wp_query无法正常工作

时间:2012-10-16 09:07:21

标签: php wordpress

我决定开始使用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>

1 个答案:

答案 0 :(得分:1)

你在WP_Query中使用了错误的参数,它应该是page_id而不是paged。以下是食典委的参考资料;

http://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters