s the more descriptive, specific name for use within this method. $taxonomy = $object_subtype; /** * Filters the max number of pages for a taxonomy sitemap before it is generated. * * Passing a non-null value will short-circuit the generation, * returning that value instead. * * @since 5.5.0 * * @param int|null $max_num_pages The maximum number of pages. Default null. * @param string $taxonomy Taxonomy name. */ $max_num_pages = apply_filters( 'wp_sitemaps_taxonomies_pre_max_num_pages', null, $taxonomy ); if ( null !== $max_num_pages ) { return $max_num_pages; } $term_count = wp_count_terms( $this->get_taxonomies_query_args( $taxonomy ) ); return (int) ceil( $term_count / wp_sitemaps_get_max_urls( $this->object_type ) ); } /** * Returns the query args for retrieving taxonomy terms to list in the sitemap. * * @since 5.5.0 * * @param string $taxonomy Taxonomy name. * @return array Array of WP_Term_Query arguments. */ protected function get_taxonomies_query_args( $taxonomy ) { /** * Filters the taxonomy terms query arguments. * * Allows modification of the taxonomy query arguments before querying. * * @see WP_Term_Query for a full list of arguments * * @since 5.5.0 * * @param array $args Array of WP_Term_Query arguments. * @param string $taxonomy Taxonomy name. */ $args = apply_filters( 'wp_sitemaps_taxonomies_query_args', array( 'taxonomy' => $taxonomy, 'orderby' => 'term_order', 'number' => wp_sitemaps_get_max_urls( $this->object_type ), 'hide_empty' => true, 'hierarchical' => false, 'update_term_meta_cache' => false, ), $taxonomy ); return $args; } } Warning: Constant WPMUDEV_APIKEY already defined in /var/web/site/public_html/wp-content/mu-plugins/wpmudev-updates-mods.php on line 3 Deprecated: Creation of dynamic property TwitterFeed\Builder\CTF_Feed_Builder::$ctf_sb_analytics is deprecated in /var/web/site/public_html/wp-content/plugins/custom-twitter-feeds/inc/Builder/CTF_Feed_Builder.php on line 23 Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the calendar-plus domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/web/site/public_html/wp-includes/functions.php on line 6114 Warning: Cannot modify header information - headers already sent by (output started at /var/web/site/public_html/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php:1) in /var/web/site/public_html/wp-includes/pluggable.php on line 1435 Warning: Cannot modify header information - headers already sent by (output started at /var/web/site/public_html/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php:1) in /var/web/site/public_html/wp-includes/pluggable.php on line 1438