Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_sitemaps_posts_query_args

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
202            * Filters the query arguments for post type sitemap queries.
203            *
204            * @see WP_Query for a full list of arguments.
205            *
206            * @since 5.5.0
207            *
208            * @param array  $args      Array of WP_Query arguments.
209            * @param string $post_type Post type name.
210            */
211           $args = apply_filters(
212                'wp_sitemaps_posts_query_args',
213                array(
214                     'orderby'                => 'ID',
215                     'order'                  => 'ASC',
216                     'post_type'              => $post_type,
217                     'posts_per_page'         => wp_sitemaps_get_max_urls( $this->object_type ),
218                     'post_status'            => array( 'publish' ),
219                     'no_found_rows'          => true,
220                     'update_post_term_cache' => false,