如何在WordPress菜单中列出基于链接的父项的子页面

时间:2016-02-29 12:14:28

标签: wordpress list menu children

我的菜单由自定义链接作为父级,在其中包含一组子页面。我想得到它的所有孩子,但我找到的是如何按父ID列出子页面

1 个答案:

答案 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); 
}