wp_sitemaps_get_max_urls()
Gets the maximum number of URLs for a sitemap.
Hooks from the function
Return
Int
. The maximum number of URLs.
Usage
wp_sitemaps_get_max_urls( $object_type );
- $object_type(string) (required)
- Object type for sitemap to be filtered (e.g. 'post', 'term', 'user').
Examples
#1 Example of use
This is a piece of the Site Map Provider example.
$per_page = wp_sitemaps_get_max_urls( $this->object_type ); $offset = ( $arg->paged - 1 ) * $per_page; $LIMIT = sprintf( "LIMIT %d, %d", $offset, $per_page ); $sql = "SELECT $SELECT FROM $wpdb->wp_core_data WHERE $WHERE $LIMIT";
Changelog
Since 5.5.0 | Introduced. |
wp_sitemaps_get_max_urls() wp sitemaps get max urls code WP 6.7.1
function wp_sitemaps_get_max_urls( $object_type ) { /** * Filters the maximum number of URLs displayed on a sitemap. * * @since 5.5.0 * * @param int $max_urls The maximum number of URLs included in a sitemap. Default 2000. * @param string $object_type Object type for sitemap to be filtered (e.g. 'post', 'term', 'user'). */ return apply_filters( 'wp_sitemaps_max_urls', 2000, $object_type ); }