Wordpress在二十二个模板中排除博客中的类别

时间:2014-04-21 17:22:21

标签: php wordpress

我一直在谷歌上搜索如何在不使用插件的情况下从我的博客中排除某个类别的答案。

我想出了这个:

<?php query_posts('cat=-2'); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php //comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>

但是,这并不排除类别ID为2的博客帖子。可以澄清原因吗?

1 个答案:

答案 0 :(得分:-1)

试试这个:

query_posts($query_string . '&cat=-2');