From 1f0af5b5ae1aa3587dd4f25db4056c10669b8d2d Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Mon, 5 Dec 2022 21:29:36 +0000 Subject: [PATCH] Customize: Fix a wrong condition on `WP_Customize_Manager::has_published_pages()`. The Homepage Settings section on the customizer uses `WP_Customize_Manager::has_published_pages()` as `active_callback`. [53057] introduced an error on the logical check when the queried page is not a top-level page, which leads `has_published_pages` to incorrectly return an empty array. This changeset fixes the issue by adding `'hierarchical' => 0` to `get_pages()` arguments. Follow-up to [53057]. Props felipelavinz, dlh, costdev. Fixes #57198. git-svn-id: https://develop.svn.wordpress.org/trunk@54935 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-customize-manager.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/class-wp-customize-manager.php b/src/wp-includes/class-wp-customize-manager.php index fe03a93c1e..093243ef15 100644 --- a/src/wp-includes/class-wp-customize-manager.php +++ b/src/wp-includes/class-wp-customize-manager.php @@ -5764,7 +5764,15 @@ final class WP_Customize_Manager { } } } - return 0 !== count( get_pages( array( 'number' => 1 ) ) ); + + return 0 !== count( + get_pages( + array( + 'number' => 1, + 'hierarchical' => 0, + ) + ) + ); } /**