Uses
Uses | Description |
---|---|
wp-includes/post.php: _page_traverse_name() | Traverse and return all the nested children post names of a root page. |
Order the pages with children under parents in a flat list.
It uses auxiliary structure to hold parent-children relationships and runs in O(N) complexity
(WP_Post[]) (Required) Posts array (passed by reference).
(int) (Optional) Parent page ID. Default 0.
(string[]) Array of post names keyed by ID and arranged by hierarchy. Children immediately follow their parents.
File: wp-includes/post.php
function get_page_hierarchy( &$pages, $page_id = 0 ) { if ( empty( $pages ) ) { return array(); } $children = array(); foreach ( (array) $pages as $p ) { $parent_id = intval( $p->post_parent ); $children[ $parent_id ][] = $p; } $result = array(); _page_traverse_name( $page_id, $children, $result ); return $result; }
Version | Description |
---|---|
2.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_page_hierarchy