wp_sitemaps_users_pre_max_num_pages

wp_sitemaps_users_pre_max_num_pages

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_sitemaps_users_pre_max_num_pages') is found 1 times:

  • /wp-includes/sitemaps/providers/class-wp-sitemaps-users.php line 111
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    * @since 5.5.0
     *
     * @param int|null $max_num_pages The maximum number of pages. Default null.
     */
    $max_num_pages = apply_filters( 'wp_sitemaps_users_pre_max_num_pages', null );
     
    if ( null !== $max_num_pages ) {
        return $max_num_pages;
    }
     
    $args  = $this->get_users_query_args();