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.')) { ?>

但没有机会...谢谢!

4

1 回答 1

1

可能最好将其放入变量中

$cat_title = single_cat_title();

然后

if (in_category(10) && in_category($cat_title)) { ?>
于 2010-01-29T14:36:30.377 回答