From 4727124583ac88ac5b665e118761d297a0e674d6 Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Fri, 2 Dec 2016 16:19:34 +0000 Subject: [PATCH] Customize: Fix posts limit query arg for `WP_Query` from incorrect `number` to `posts_per_page`. Merges [39434] onto 4.7 branch. Props dlh. Fixes #39022 for 4.7. Built from https://develop.svn.wordpress.org/branches/4.7@39435 git-svn-id: http://core.svn.wordpress.org/branches/4.7@39375 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-manager.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 94150d64b3..4278dbd62e 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -794,7 +794,7 @@ final class WP_Customize_Manager { 'post_type' => 'customize_changeset', 'post_status' => get_post_stati(), 'name' => $uuid, - 'number' => 1, + 'posts_per_page' => 1, 'no_found_rows' => true, 'cache_results' => true, 'update_post_meta_cache' => false, @@ -1003,7 +1003,7 @@ final class WP_Customize_Manager { 'post__in' => $starter_content_auto_draft_post_ids, 'post_status' => 'auto-draft', 'post_type' => 'any', - 'number' => -1, + 'posts_per_page' => -1, ) ); foreach ( $existing_posts_query->posts as $existing_post ) { $existing_starter_content_posts[ $existing_post->post_type . ':' . $existing_post->post_name ] = $existing_post; @@ -1016,7 +1016,7 @@ final class WP_Customize_Manager { 'post_name__in' => $all_post_slugs, 'post_status' => array_diff( get_post_stati(), array( 'auto-draft' ) ), 'post_type' => 'any', - 'number' => -1, + 'posts_per_page' => -1, ) ); foreach ( $existing_posts_query->posts as $existing_post ) { $key = $existing_post->post_type . ':' . $existing_post->post_name; diff --git a/wp-includes/version.php b/wp-includes/version.php index 8f602b2f9b..94b318d6d3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-RC1-39431'; +$wp_version = '4.7-RC1-39435'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.