0
<?php
if (is_category())
echo single_cat_title();
?>
我可以显示当前类别冠军。
我怎样才能插入标签single_cat_title()到:
<?php
$recent = new WP_Query("cat=10&showposts=4"); while($recent->have_posts()) : $recent->the_post();
if (in_category(10) && in_category(**Insert Here**)) { ?>
我
试了一下if (in_category(10) && in_category('.single_cat_title.')) { ?>
但没有机会... 谢谢!