diff --git src/wp-includes/taxonomy.php src/wp-includes/taxonomy.php
index 71c422d..106adb3 100644
|
|
function get_term_to_edit( $id, $taxonomy ) { |
1562 | 1562 | * The 'get_terms_orderby' filter passes the ORDER BY clause for the query |
1563 | 1563 | * along with the $args array. |
1564 | 1564 | * |
1565 | | * The 'get_terms_fields' filter passes the fields for the SELECT query |
1566 | | * along with the $args array. |
1567 | | * |
1568 | 1565 | * @since 2.3.0 |
1569 | 1566 | * @since 4.2.0 Introduced 'name' and 'childless' parameters. |
1570 | 1567 | * |
… |
… |
function get_terms( $taxonomies, $args = '' ) { |
1929 | 1926 | /** |
1930 | 1927 | * Filter the fields to select in the terms query. |
1931 | 1928 | * |
| 1929 | * Field lists modified using this filter will only modify the term fields returned by the function when the |
| 1930 | * `$fields` parameter set to 'count' or 'all'. In all other cases, the term fields in the results array will |
| 1931 | * be determined by the `$fields` parameter alone. |
| 1932 | * |
| 1933 | * Use of this filter can result in unpredictable behavior, and is not recommended. |
| 1934 | * |
1932 | 1935 | * @since 2.8.0 |
1933 | 1936 | * |
1934 | 1937 | * @param array $selects An array of fields to select for the terms query. |