Changeset 37567 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 05/25/2016 06:44:00 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r37544 r37567 2629 2629 2630 2630 // Update termmeta cache, if necessary. 2631 if ( $args['update_term_meta_cache'] && ( 'all' === $fields || 'all_with_object_id s' === $fields || 'term_id' === $fields ) ) {2632 if ( ' term_id' === $fields ) {2633 $term_ids = $ fields;2631 if ( $args['update_term_meta_cache'] && ( 'all' === $fields || 'all_with_object_id' === $fields || 'ids' === $fields ) ) { 2632 if ( 'ids' === $fields ) { 2633 $term_ids = $terms; 2634 2634 } else { 2635 2635 $term_ids = wp_list_pluck( $terms, 'term_id' );
Note: See TracChangeset
for help on using the changeset viewer.