wp/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php
changeset 22 8c2e4d02f4ef
parent 21 48c4eec2b7e6
equal deleted inserted replaced
21:48c4eec2b7e6 22:8c2e4d02f4ef
   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 	 *