使用get_pages在WordPress中仅获取直接子页面
我正在尝试获取页面的所有直接子级。但是我也得到了所有的孩子和大孩子。有任何想法吗? PHP资料来源: $args = array( 'child_of' => $post->ID, 'parent ' => $post->ID, 'hierarchical' => 0, 'sort_column' => 'menu_order', 'sort_order' => 'asc' ); $mypages = get_pages( $args ); foreach( $mypages as $post ) { $post_tempalte = the_page_template_part(); get_template_part( 'content' , $post_tempalte ); } $args根据文档,我应该是正确的,但是它完全忽略了parent和hierarchical。 我的页面结构如下: 父母 -儿童1 -儿童2 --Child 1胎2 --Child …