diff --git src/wp-includes/taxonomy.php src/wp-includes/taxonomy.php
index 293b18b8b6..415c8eaaab 100644
|
|
function _get_term_hierarchy( $taxonomy ) { |
3382 | 3382 | $children = array(); |
3383 | 3383 | $terms = get_terms( |
3384 | 3384 | $taxonomy, array( |
3385 | | 'get' => 'all', |
3386 | | 'orderby' => 'id', |
3387 | | 'fields' => 'id=>parent', |
| 3385 | 'get' => 'all', |
| 3386 | 'orderby' => 'id', |
| 3387 | 'fields' => 'id=>parent', |
| 3388 | 'update_term_meta_cache' => false, |
3388 | 3389 | ) |
3389 | 3390 | ); |
3390 | 3391 | foreach ( $terms as $term_id => $parent ) { |