apply_filters( 'wp_sitemaps_taxonomies_pre_max_num_pages', int|null $max_num_pages, string $taxonomy )

Filters the max number of pages for a taxonomy sitemap before it is generated.


Description

Passing a non-null value will short-circuit the generation, returning that value instead.


Top ↑

Parameters

$max_num_pages int|null
The maximum number of pages. Default null.
$taxonomy string
Taxonomy name.

Top ↑

Source

File: wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php. View all references

$max_num_pages = apply_filters( 'wp_sitemaps_taxonomies_pre_max_num_pages', null, $taxonomy );


Top ↑

Changelog

Changelog
Version Description
5.5.0 Introduced.

Top ↑

User Contributed Notes

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