如何在wordpress中获取父页面的所有子页面?
2022-08-30 23:25:00
例:
About
--- Menu 1
--- Menu 2
--- Menu 3
--- Menu 4
如果我在关于页面...我有子页面。但是,如果进入菜单1,所有页面都会消失
我需要的是一直看到父页面
目前我有这个代码
<? if (is_page()) {
$g_page_id = $wp_query->get_queried_object_id();
wp_list_pages("depth=4&title_li=&child_of=".$g_page_id."&sort_column=menu_order");
}
?>
谢谢!
解决
我使用这个,工作正常!
<?php
if ( is_page() ) :
if( $post->post_parent ) :
$children = wp_list_pages( 'title_li=&child_of='.$post->post_parent.'&echo=0' );
else;
$children = wp_list_pages( 'title_li=&child_of='.$post->ID.'&echo=0' );
endif;
if ($children) : ?>
<div class="title">
<?php
$parent_title = get_the_title( $post->post_parent );
echo $parent_title;
?>
<span></span>
</div>
<ul>
<?php echo $children; ?>
</ul>
<?php
endif;
endif;
?>