我有一个单页模板,我想根据菜单顺序获取页面,所以我想有一个循环来获取“主”菜单中的所有页面。
但在“get\\u pages”中,我没有按菜单筛选的选项,我如何才能做到这一点?
$mypages = get_pages( array( \'sort_column\' => \'post_date\', \'sort_order\' => \'desc\' ) );
foreach( $mypages as $page ) {
$content = $page->post_content;
if ( ! $content ) // Check for empty page
continue;
$content = apply_filters( \'the_content\', $content );
?>
<h2><a href="<?php echo get_page_link( $page->ID ); ?>"><?php echo $page->post_title; ?></a></h2>
<div class="entry"><?php echo $content; ?></div>
<?php
}