不管是wp模板的首页,列表还是文章,标签页都会有用到调用文章列表的地方,记录一下输出文章分类名称,首页调用文章显示分类部分代码:
<?php while( have_posts()): the_post();update_post_caches($posts);?> <?php if(in_category(array(11,18))):?> <div class="item"> <div class="team-item"> <div class="team-img"> <a href="<?php the_permalink(); ?>" ><?php the_post_thumbnail(); ?></a> </div> <div class="team-text"> <h2 class="team-name"><?php the_category();?></h2> <p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p> </div> </div> </div> <?php endif;?> <?php endwhile;?>
代码中:
<?php the_category();?>
输出了带分类超链接的分类名称。