Make WordPress Core


Ignore:
Timestamp:
08/03/2019 03:34:54 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Taxonomy: Fix deprecated calls to get_terms().

The taxonomy should be passed as part of $args, rather than as its own argument.

Props sgastard, mukesh27, SergeyBiryukov.
Fixes #47819.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/template.php

    r45667 r45723  
    126126        $args['selected_cats'] = array();
    127127    }
     128
    128129    if ( is_array( $parsed_args['popular_cats'] ) ) {
    129130        $args['popular_cats'] = $parsed_args['popular_cats'];
    130131    } else {
    131132        $args['popular_cats'] = get_terms(
    132             $taxonomy,
    133133            array(
     134                'taxonomy'     => $taxonomy,
    134135                'fields'       => 'ids',
    135136                'orderby'      => 'count',
     
    140141        );
    141142    }
     143
    142144    if ( $descendants_and_self ) {
    143145        $categories = (array) get_terms(
    144             $taxonomy,
    145146            array(
     147                'taxonomy'     => $taxonomy,
    146148                'child_of'     => $descendants_and_self,
    147149                'hierarchical' => 0,
     
    152154        array_unshift( $categories, $self );
    153155    } else {
    154         $categories = (array) get_terms( $taxonomy, array( 'get' => 'all' ) );
     156        $categories = (array) get_terms(
     157            array(
     158                'taxonomy' => $taxonomy,
     159                'get'      => 'all',
     160            )
     161        );
    155162    }
    156163
     
    208215
    209216    $terms = get_terms(
    210         $taxonomy,
    211217        array(
     218            'taxonomy'     => $taxonomy,
    212219            'orderby'      => 'count',
    213220            'order'        => 'DESC',
     
    267274
    268275    $categories = get_terms(
    269         'link_category',
    270276        array(
     277            'taxonomy'   => 'link_category',
    271278            'orderby'    => 'name',
    272279            'hide_empty' => 0,
Note: See TracChangeset for help on using the changeset viewer.