wp_sitemaps_posts_pre_max_num_pages хук-фильтр . WP 5.5.0
Filters the max number of pages before it is generated.
Passing a non-null value will short-circuit the generation, returning that value instead.
Использование
add_filter( 'wp_sitemaps_posts_pre_max_num_pages', 'filter_function_name_1092', 10, 2 ); function filter_function_name_1092( $max_num_pages, $post_type ){ // filter... return $max_num_pages; }
- $max_num_pages(число/null)
- The maximum number of pages.
По умолчанию: null - $post_type(строка)
- Post type name.
Список изменений
С версии 5.5.0 | Введена. |
Где вызывается хук
wp_sitemaps_posts_pre_max_num_pages
wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php 165
$max_num_pages = apply_filters( 'wp_sitemaps_posts_pre_max_num_pages', null, $post_type );