我有这个代码,显示每个类别的默认图像。
<?php if (is_category('name1')) { ?> <img src="<?php
bloginfo('template_directory'); ?>/images/name1.gif" alt="<?php
the_title(); ?>" width="100" height="100" />
<?php } else if (is_category('name2')) { ?> <img src="<?php bloginfo('template_directory'); ?>/images/name2.gif" alt="<?php the_title(); ?>" width="100" height="100" />
<?php } else { ?>
<img src="<?php bloginfo('template_directory'); ?>/includes/timthumb.php?src=<?php get_thumbnail($post->ID, 'full'); ?>&h=100&w=100&zc=1" alt="<?php the_title(); ?>" width="100" height="100"/>
<?php } ?>
这些类别(name1,name2,name ...)中的每一个都属于主要父类别“Name”。当我打开每个类别时,它会显示默认图像,但是当我打开主要父类别时,它不会显示子类别图像。 (因为我得到了类别ID,而父类别有不同的ID)
有没有办法做到这一点?
谢谢
答案 0 :(得分:0)
如果我正确理解了问题,您也希望在父类别页面中显示图像。那你为什么不试试
if(is_category('childname parentname')){
//show. image
}