apply_filters( 'wp_sitemaps_posts_query_args', array $args , string $post_type )
Filters the query arguments for post type sitemap queries.
Description
See also
- WP_Query: for a full list of arguments.
Parameters
-
$args
array -
Array of WP_Query arguments.
-
$post_type
string -
Post type name.
Source
File: wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php
.
View all references
$args = apply_filters(
'wp_sitemaps_posts_query_args',
array(
'orderby' => 'ID',
'order' => 'ASC',
'post_type' => $post_type,
'posts_per_page' => wp_sitemaps_get_max_urls( $this->object_type ),
'post_status' => array( 'publish' ),
'no_found_rows' => true,
'update_post_term_cache' => false,
'update_post_meta_cache' => false,
'ignore_sticky_posts' => true, // Sticky posts will still appear, but they won't be moved to the front.
),
$post_type
);
Changelog
Version | Description |
---|---|
6.1.0 | Added ignore_sticky_posts default parameter. |
5.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
Filters the custom query arguments for post-type sitemap queries.