我一直在谷歌上搜索如何在不使用插件的情况下从我的博客中排除某个类别的答案。
我想出了这个:
<?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的博客帖子。可以澄清原因吗?
答案 0 :(得分:-1)
试试这个:
query_posts($query_string . '&cat=-2');