Changeset 30159 for trunk/src/wp-includes/post.php
- Timestamp:
- 11/01/2014 08:43:55 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post.php
r30158 r30159 4286 4286 $page_list = array(); 4287 4287 foreach ( (array) $pages as $page ) { 4288 if ( $page->post_parent == $page_id ) {4288 if ( $page->post_parent == $page_id || in_array( $page_id, $page->ancestors ) ) { 4289 4289 $page_list[] = $page; 4290 4290 if ( $children = get_page_children($page->ID, $pages) ) … … 4620 4620 update_post_cache( $pages ); 4621 4621 4622 // Convert to WP_Post instances 4623 $pages = array_map( 'get_post', $pages ); 4624 4622 4625 if ( $child_of || $hierarchical ) { 4623 4626 $pages = get_page_children($child_of, $pages); … … 4647 4650 4648 4651 wp_cache_set( $cache_key, $page_structure, 'posts' ); 4649 4650 // Convert to WP_Post instances.4651 $pages = array_map( 'get_post', $pages );4652 4652 4653 4653 /**
Note: See TracChangeset
for help on using the changeset viewer.