因为您在一个页面上,所以只会显示该页面的查询。因此,您必须创建一个新的查询来引入所需的帖子。用以下内容替换循环:
<?php
$args = array(
\'post_type\' => \'post\'
);
$post_query = new WP_Query($args);
if($post_query->have_posts() ) {
while($post_query->have_posts() ) {
$post_query->the_post();
?>
<h2><?php the_title(); ?></h2>
<?php
}
}
?>
以下是有关查询的更多信息:
http://codex.wordpress.org/Class_Reference/WP_Query