Make WordPress Core

Ticket #43142: 43142.diff

File 43142.diff, 603 bytes (added by peterwilsoncc, 7 years ago)
  • src/wp-includes/taxonomy.php

    diff --git src/wp-includes/taxonomy.php src/wp-includes/taxonomy.php
    index 293b18b8b6..415c8eaaab 100644
    function _get_term_hierarchy( $taxonomy ) { 
    33823382        $children = array();
    33833383        $terms    = get_terms(
    33843384                $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,
    33883389                )
    33893390        );
    33903391        foreach ( $terms as $term_id => $parent ) {