2010-09-13 42 views
0

如何列出子頁面但跳過第一級頁面?
這是我當前的查詢,但我希望它向下鑽取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; ?> 

任何想法?

回答

0
array_shift($subpages); 

將敲出陣列中的第一項。