在自定义页面模板上,默认循环正常工作,这就是循环从页面获取内容的原因。在这种情况下,您需要一个自定义查询。这是代码。
<?php
$query = new WP_Query( array(
\'post_type\' => \'post\',
\'post_status\' => \'publish\',
) );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
get_template_part( \'content\', \'home\' );
}
}