为什么此页面查询不起作用?

时间:2011-04-03 作者:markratledge

这应该很容易。我需要查询以在选项卡中显示一页。只需逐个查询一页,但我在这里做错了一些事情(可能很多):

Edit: Hah. I forgot the_content It works now.

<?php

$the_query = new WP_Query; $the_query->query (\'pagename=about\' );

while ($the_query->have_posts()) : $the_query->the_post(); ?>

<?php the_content(); ?>  //forgot this

<?php endwhile; ?>

3 个回复
最合适的回答,由SO网友:markratledge 整理而成

Hah. I forgot <?php the_content(); ?>

SO网友:anu

Shouldn\'t this be $the_query = new WP_Query(\'pagename=about\'); ?

SO网友:Dav64k

如果只有一个页面可以调用,为什么要使用“while”?外观:

<?php $query = new WP_Query;
$query->query (\'pagename=about\');
$query->the_post();
the_content(); ?>

结束

相关推荐