列出子页面,但跳过第1级

时间:2010-09-13 09:34:55

标签: php wordpress menu

如何列出子页面但跳过第一级页面?
这是我当前的查询,但我希望它深入深入1级,只列出子子页面

<?php
$args = array('post_type' => 'page','numberposts' => 10,'post_parent' => $post->ID);
$subpages = get_posts($args);
foreach($subpages as $post) :
setup_postdata($post);
?>
<div>  
<?php the_title(); ?>
<?php the_excerpt(); ?>    
</div>
<?php endforeach; ?>

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

array_shift($subpages);

将第一项敲出阵列。