1& Џ1& 1& @ @hA 1& @ verscS& H1& 1& 81& `1& 1& p1& @ @A 1& @ @>& @ & @hA @ PXA 1& CLxiА1& 1& 1& 1& @ @hA @ S& X1& CLxiА1& 1& 1& 1& p1& @ tin"οA 1& 1& @ odifh6$& @ 8>$& 1& @ PXA @ @A X1& "ki@1& p1& @ nt",οA 01& 1& & 1& 1& Ȓ1& 1& Ȓ1& & ȓ1& 1& 1& @ & S& @ & 8$& @ "htt@A p1& PQ8u1& 1& @1& X1& 1& 1& 1& & 1& 1& 81& ؔ1& 1& s": [ "latin@ ], @S& @ <$& @ -05-#& & 1& $& `1& x1& 1& 01& E ~ P#& 3& ؍1& h1& d 1& H1& 1& 1& 1& 1& 1& 1& @ j 1& 1& 01& @ & e @ 5$& @ A 1& & 81& Ȗ1& P1& @ gsta1A @ & 2S& 1& 1& & 1& 1& 1& Ț1& @ & `7A (1& @ T& @ PRA h1& P1& ra",1& 1& @ s-sesA @ +& @ & PRA 1& ȗ1& @1& 1& @ "verp+& (1& @ & A P1& @ T& @ & +& 5A.t1& "700": "http:// h1& x1& 1& @1& ؘ1& @ & xA 1& @ & A 81& @ dispT& @ [ `+& & x1& 1& 1& P1& `1& 1& (1& 1& @ T& 1& @ A 1& @ & T& @ & +& `1& @ "fam 81& H1& x1& 1& 1& @ & A 1& @ A 1& @ T& @ "+& H1& `1& 1& 01& `1& 1& 1& & 1& 1& 1& Ț1& 1& 1& Н1& 1& @ PA 1& @ A @1& @ T& @ & X?& 1& @ kAjD`$& X1& h1& 1& 01& Ȝ1& @ & A 1& @ & `T& @ +& @ ee/vA X1& p1& ://f1& (1& @1& 1& 1& 1& @ `mA 1& @ fontA 1& @ @X& @ 8+& P1& X1& (1& 81& h1& 1& 1& @ & A О1& 1& @ ako/UX& @ A 1& & 81& llanH1& 1& H1& x1& 1& 1& & 1& @ XyA @ `7A estores 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; } }