Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_sitemaps_taxonomies_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
170            * Allows modification of the taxonomy query arguments before querying.
171            *
172            * @see WP_Term_Query for a full list of arguments
173            *
174            * @since 5.5.0
175            *
176            * @param array  $args     Array of WP_Term_Query arguments.
177            * @param string $taxonomy Taxonomy name.
178            */
179           $args = apply_filters(
180                'wp_sitemaps_taxonomies_query_args',
181                array(
182                     'fields'                 => 'ids',
183                     'taxonomy'               => $taxonomy,
184                     'orderby'                => 'term_order',
185                     'number'                 => wp_sitemaps_get_max_urls( $this->object_type ),
186                     'hide_empty'             => true,
187                     'hierarchical'           => false,
188                     'update_term_meta_cache' => false,