如何使Wordpress页面像显示多个帖子的默认主页一样?

时间:2010-10-23 00:36:07

标签: wordpress

我基本上想要一个像主页一样的Wordpress“页面”并循环播放最近的帖子并显示它们。我该怎么做?

2 个答案:

答案 0 :(得分:1)

如果您转到设置 - &gt;阅读然后选择“首页显示”选择静态页面,然后从下拉列表中选择一个页面,然后编辑此文件的源代码以包含标准WP循环,如 - < / p>

<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
    <h2><?php the_title() ?><h2>
<?php endwhile; endif; ?>

答案 1 :(得分:1)

使用wordpress循环,但您可以使用query_posts()

控制循环中显示的帖子

http://codex.wordpress.org/Template_Tags/query_posts