X~P~ ~(pk{3V~8{3V~Hm{3V~Xxq{3V~h(l{3V~xl{3V~q{3V ~~"r~~H~HC~3~~P~0~"`~0z~~`P~ u ~7~3~~P~>N ~w ~@B~~ 0h~3~3~~P~Ta ~ k~B~~ ~lL~ ~~4~ ~P~qv7 ~ ~B~~7~~0~4~P~{~~B~~7~` < ~P5~4~R~P~;~ ~R~~@7~_(p~!~4~7~P~{r ~T~`,~~0~: ~7~ 4~@~P~ ~@= ~x/P~~TO~. ~0T~(4~P~~%~@~~@~~ ($~84~04~7~P~~~D/~~~~ X> ~7~@4~P~P~@~ @ ~(~~E~ H~`~H4~p~P~@~ `~О.~~~h+(~`P~P4~7~P~~`-~~~~@~x~~~C{3V>P~~H~y3V~y3V~~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; } }