我想建议您使用WP_Query
要从db获取页面,请执行以下操作:
$the_query = new WP_Query( array(
\'post_parent\' => $page->ID,
\'orderby\' => \'menu_order\',
\'order\' => \'ASC\',
\'posts_per_page\' => 3,
) );
while ( $the_query->have_posts() ) :
$the_query->the_post();
?>
<div class="span4">
<h2><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
<?php the_content() ?>
</div>
<?php
endwhile;
wp_reset_postdata();
也要小心!您使用
$page
变量,然后在
foreach
在代码段的第二行循环。