我决定开始使用wp_query
而不是query_posts
,在我的主页上,我想从div中的特定页面调用内容。只是想知道我在这里缺少什么,因为什么都没有出现,我确实有一个内容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>
答案 0 :(得分:1)
你在WP_Query中使用了错误的参数,它应该是page_id
而不是paged
。以下是食典委的参考资料;
http://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters