Changeset 59462
- Timestamp:
- 11/26/2024 09:15:31 PM (5 days ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/nav-menu.php
r58975 r59462 876 876 877 877 $num_pages = (int) ceil( 878 wp_count_terms(878 (int) wp_count_terms( 879 879 array_merge( 880 880 $args, -
trunk/src/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php
r56586 r59462 172 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
Note: See TracChangeset
for help on using the changeset viewer.