apply_filters( ‘wp_sitemaps_posts_pre_max_num_pages’, int|null $max_num_pages, string $post_type )

In this article

Filters the max number of pages before it is generated.

Description

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

Parameters

$max_num_pagesint|null
The maximum number of pages. Default null.
$post_typestring
Post type name.

Source

$max_num_pages = apply_filters( 'wp_sitemaps_posts_pre_max_num_pages', null, $post_type );

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

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