Changeset 56516 for branches/6.3
- Timestamp:
- 09/05/2023 08:43:43 PM (16 months ago)
- Location:
- branches/6.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.3
-
branches/6.3/src/wp-includes/post.php
r56200 r56516 6092 6092 $query_args = apply_filters( 'get_pages_query_args', $query_args, $parsed_args ); 6093 6093 6094 $ query = new WP_Query( $query_args);6095 $pages = $ query->get_posts();6094 $pages = new WP_Query(); 6095 $pages = $pages->query( $query_args ); 6096 6096 6097 6097 if ( $child_of || $hierarchical ) {
Note: See TracChangeset
for help on using the changeset viewer.