Changeset 54785 for trunk/src/wp-includes/canonical.php
- Timestamp:
- 11/10/2022 02:59:56 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/canonical.php
r53043 r54785 332 332 333 333 foreach ( $wp_query->tax_query->queried_terms as $tax_query ) { 334 $term_count += count( $tax_query['terms'] ); 334 if ( isset( $tax_query['terms'] ) && is_countable( $tax_query['terms'] ) ) { 335 $term_count += count( $tax_query['terms'] ); 336 } 335 337 } 336 338
Note: See TracChangeset
for help on using the changeset viewer.