Query: Improved sticky post query
Ensure that the parameters `update_post_meta_cache`, `update_post_term_cache`, `cache_results`, `suppress_filters` and `lazy_load_term_meta` that are passed to WP_Query, are also passed down to the secondary query used to get sticky posts. Props Spacedmonkey, peterwilsoncc, rehanali, uday17035. Fixes #36907. Built from https://develop.svn.wordpress.org/trunk@52982 git-svn-id: http://core.svn.wordpress.org/trunk@52571 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
dcd54244a6
commit
e8bf92cf76
|
@ -3260,10 +3260,14 @@ class WP_Query {
|
|||
if ( ! empty( $sticky_posts ) ) {
|
||||
$stickies = get_posts(
|
||||
array(
|
||||
'post__in' => $sticky_posts,
|
||||
'post_type' => $post_type,
|
||||
'post_status' => 'publish',
|
||||
'nopaging' => true,
|
||||
'cache_results' => $q['cache_results'],
|
||||
'lazy_load_term_meta' => $q['lazy_load_term_meta'],
|
||||
'post__in' => $sticky_posts,
|
||||
'post_type' => $post_type,
|
||||
'post_status' => 'publish',
|
||||
'suppress_filters' => $q['suppress_filters'],
|
||||
'update_post_meta_cache' => $q['update_post_meta_cache'],
|
||||
'update_post_term_cache' => $q['update_post_term_cache'],
|
||||
)
|
||||
);
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.0-alpha-52981';
|
||||
$wp_version = '6.0-alpha-52982';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue