【发布时间】:2014-07-25 01:43:46
【问题描述】:
我有这段代码,现在无论类别如何,都会吐出所有帖子。
<?php /* Start the Loop */ ?>
<?php global $query_string;
query_posts( $query_string . '&ignore_sticky_posts=1' ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_query(); // reset the query ?>
除了排除具有“博客”类别的帖子之外,我该如何做同样的事情?
【问题讨论】:
标签: php wordpress categories templating