$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 );
return $args;
}}