我基本上想要一个像主页一样的Wordpress“页面”并循环播放最近的帖子并显示它们。我该怎么做?
答案 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()