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. Built from https://develop.svn.wordpress.org/trunk@54935 git-svn-id: http://core.svn.wordpress.org/trunk@54487 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b218a71d1c
commit
0164f0a85f
|
@ -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,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.2-alpha-54934';
|
$wp_version = '6.2-alpha-54935';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue