我决定在我的主页上开始使用wp_query
而不是, 我想从 div 中的特定页面调用内容。query_posts
只是想知道我在这里遗漏了什么,因为什么都没有出现,而且我确实有一个 ID 为 140 的页面。我对此还是很陌生,谢谢!
<div class="home-info" >
<?php
if (have_posts() ) :
$the_query = new WP_Query( 'paged=140' );
while ($the_query->have_posts() ) : $the_query->the_post();
echo the_content();
endwhile;
wp_reset_postdata();
endif;
?>
</div>