wp_sitemaps_posts_pre_max_num_pages
Filters the max number of pages before it is generated.
Passing a non-null value will short-circuit the generation, returning that value instead.
Usage
add_filter( 'wp_sitemaps_posts_pre_max_num_pages', 'wp_kama_sitemaps_posts_pre_max_num_pages_filter', 10, 2 ); /** * Function for `wp_sitemaps_posts_pre_max_num_pages` filter-hook. * * @param int|null $max_num_pages The maximum number of pages. * @param string $post_type Post type name. * * @return int|null */ function wp_kama_sitemaps_posts_pre_max_num_pages_filter( $max_num_pages, $post_type ){ // filter... return $max_num_pages; }
- $max_num_pages(int|null)
- The maximum number of pages.
Default: null - $post_type(string)
- Post type name.
Changelog
Since 5.5.0 | Introduced. |
Where the hook is called
wp_sitemaps_posts_pre_max_num_pages
wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php 200
$max_num_pages = apply_filters( 'wp_sitemaps_posts_pre_max_num_pages', null, $post_type );