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; ?>
任何想法?