equal
deleted
inserted
replaced
169 return $max_num_pages; |
169 return $max_num_pages; |
170 } |
170 } |
171 |
171 |
172 $term_count = wp_count_terms( $this->get_taxonomies_query_args( $taxonomy ) ); |
172 $term_count = wp_count_terms( $this->get_taxonomies_query_args( $taxonomy ) ); |
173 |
173 |
174 return (int) ceil( $term_count / wp_sitemaps_get_max_urls( $this->object_type ) ); |
174 return (int) ceil( (int) $term_count / wp_sitemaps_get_max_urls( $this->object_type ) ); |
175 } |
175 } |
176 |
176 |
177 /** |
177 /** |
178 * Returns the query args for retrieving taxonomy terms to list in the sitemap. |
178 * Returns the query args for retrieving taxonomy terms to list in the sitemap. |
179 * |
179 * |