Changeset 55401
- Timestamp:
- 02/21/2023 09:02:28 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post.php
r55365 r55401 7803 7803 if ( is_array( $cached_term_ids ) ) { 7804 7804 $cached_term_ids = array_filter( $cached_term_ids ); 7805 foreach ( $cached_term_ids as $ term_ids ) {7805 foreach ( $cached_term_ids as $_term_ids ) { 7806 7806 // Backward compatibility for if a plugin is putting objects into the cache, rather than IDs. 7807 foreach ( $ term_ids as $term_id ) {7807 foreach ( $_term_ids as $term_id ) { 7808 7808 if ( is_numeric( $term_id ) ) { 7809 7809 $prime_term_ids[] = (int) $term_id;
Note: See TracChangeset
for help on using the changeset viewer.