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