【发布时间】:2012-01-04 18:12:22
【问题描述】:
在我的主页上,我使用 query_posts('posts_per_page=2') 限制了最近显示的帖子数量
我还想排除一个类别,但不知道如何将这两个修改集成到循环中。
这是我的原始代码:
<?php query_posts('posts_per_page=2'); if (have_posts()) : while (have_posts()) : the_post();?>
<div class="date">Posted <?php the_time('F jS, Y') ?></div>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_content('Continue Reading →'); ?>
<?php endwhile; endif; wp_reset_query();?>
我尝试了几个不同的教程,但无法让它们发挥作用。我确定这是我自己的理解不足,因此任何明确的说明或对上述代码的修改将不胜感激。
提前致谢!
【问题讨论】:
标签: wordpress