【发布时间】:2010-12-03 20:46:52
【问题描述】:
阅读 Wordpress 文档后,我意识到您可以使用“循环”内的过滤器从索引中删除帖子,例如:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!-- The following tests if the current post is in category 3. -->
<?php if (in_category('3')) continue; ?>
<!-- display normal post -->
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
我想知道是否有一个过滤器/钩子可以在不修改模板的情况下过滤have_posts() 中的帖子。到目前为止,我找到了更改结果的选项,但没有从结果集中删除结果。
【问题讨论】: