Changeset 52982 for trunk/src/wp-includes/class-wp-query.php
- Timestamp:
- 03/23/2022 10:37:11 AM (4 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r52977 r52982 3261 3261 $stickies = get_posts( 3262 3262 array( 3263 'post__in' => $sticky_posts, 3264 'post_type' => $post_type, 3265 'post_status' => 'publish', 3266 'nopaging' => true, 3263 'cache_results' => $q['cache_results'], 3264 'lazy_load_term_meta' => $q['lazy_load_term_meta'], 3265 'post__in' => $sticky_posts, 3266 'post_type' => $post_type, 3267 'post_status' => 'publish', 3268 'suppress_filters' => $q['suppress_filters'], 3269 'update_post_meta_cache' => $q['update_post_meta_cache'], 3270 'update_post_term_cache' => $q['update_post_term_cache'], 3267 3271 ) 3268 3272 );
Note: See TracChangeset
for help on using the changeset viewer.