我的菜单由自定义链接作为父级,在其中包含一组子页面。我想得到它的所有孩子,但我找到的是如何按父ID列出子页面
答案 0 :(得分:0)
要在其中一个子页面上获取与特定父级相关的所有子级,您可以执行以下操作
global $post;
//If the page has children - print the list
if(wp_get_post_parent_id( $post->ID ))
{
$args = array(
'child_of' => wp_get_post_parent_id( $post->ID ),
'title_li' => ''
);
wp_list_pages($args);
}