如何仅显示特定类别的帖子的内容

时间:2011-10-08 作者:Tara

我展示了这个网站上所有帖子的摘录。这很好用。

然而,我想显示特定类别帖子的内容,同时保留所有其他帖子的摘录。

有没有可能,没有插件?具有过滤器功能。php等。?

使用3.1.4,210。

1 个回复
最合适的回答,由SO网友:Jamie 整理而成

您可以使用in_category 函数测试循环中的当前帖子是否位于要显示其完整内容的特定类别中。

例如

if ( in_category( \'my_category\') ) :
    the_content();
else :
    the_excerpt();
endif;
有关in_category 功能参见WordPress codex:http://codex.wordpress.org/Function_Reference/in_category

结束