WP_Sitemaps_Taxonomies::get_taxonomies_query_args( string $taxonomy ): array

In this article

Returns the query args for retrieving taxonomy terms to list in the sitemap.

Parameters

$taxonomystringrequired
Taxonomy name.

Return

array Array of WP_Term_Query arguments.

Source

protected function get_taxonomies_query_args( $taxonomy ) {
	/**
	 * Filters the taxonomy terms query arguments.
	 *
	 * Allows modification of the taxonomy query arguments before querying.
	 *
	 * @see WP_Term_Query for a full list of arguments
	 *
	 * @since 5.5.0
	 *
	 * @param array  $args     Array of WP_Term_Query arguments.
	 * @param string $taxonomy Taxonomy name.
	 */
	$args = apply_filters(
		'wp_sitemaps_taxonomies_query_args',
		array(
			'taxonomy'               => $taxonomy,
			'orderby'                => 'term_order',
			'number'                 => wp_sitemaps_get_max_urls( $this->object_type ),
			'hide_empty'             => true,
			'hierarchical'           => false,
			'update_term_meta_cache' => false,
		),
		$taxonomy
	);

	return $args;
}

Hooks

apply_filters( ‘wp_sitemaps_taxonomies_query_args’, array $args, string $taxonomy )

Filters the taxonomy terms query arguments.

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.