diff --git a/wp-includes/post.php b/wp-includes/post.php index 0bd4fc7a9f..f71a0a061d 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -6105,8 +6105,8 @@ function get_pages( $args = array() ) { */ $query_args = apply_filters( 'get_pages_query_args', $query_args, $parsed_args ); - $query = new WP_Query( $query_args ); - $pages = $query->get_posts(); + $pages = new WP_Query(); + $pages = $pages->query( $query_args ); if ( $child_of || $hierarchical ) { $pages = get_page_children( $child_of, $pages ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 6bff5d1dde..8436ece75b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56490'; +$wp_version = '6.4-alpha-56491'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.