WP_Sitemaps_Users::get_max_num_pages( string $object_subtype = '' )
Gets the max number of pages available for the object type.
Description
See also
Parameters
- $object_subtype
-
(string) (Optional) Not applicable for Users but required for compatibility with the parent provider class.
Default value: ''
Return
(int) Total page count.
Source
File: wp-includes/sitemaps/providers/class-wp-sitemaps-users.php
public function get_max_num_pages( $object_subtype = '' ) { /** * Filters the max number of pages before it is generated. * * Passing a non-null value will effectively short-circuit the generation, * returning that value instead. * * @since 5.5.0 * * @param int $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(); $query = new WP_User_Query( $args ); $total_users = $query->get_total(); return (int) ceil( $total_users / wp_sitemaps_get_max_urls( $this->object_type ) ); }
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_sitemaps_users/get_max_num_pages