diff --git src/wp-includes/class-wp-term-query.php src/wp-includes/class-wp-term-query.php
index 7431d1f5f0..9da5a20f32 100644
|
|
|
class WP_Term_Query {
|
| 123 | 123 | * @type int $offset The number by which to offset the terms query. Default empty. |
| 124 | 124 | * @type string $fields Term fields to query for. Accepts 'all' (returns an array of |
| 125 | 125 | * complete term objects), 'all_with_object_id' (returns an |
| 126 | | * array of term objects with the 'object_id' param; only works |
| 127 | | * when the `$fields` parameter is 'object_ids' ), 'ids' |
| | 126 | * array of term objects with the 'object_id' param; works only |
| | 127 | * when the `$object_ids` parameter is populated), 'ids' |
| 128 | 128 | * (returns an array of ids), 'tt_ids' (returns an array of |
| 129 | 129 | * term taxonomy ids), 'id=>parent' (returns an associative |
| 130 | 130 | * array with ids as keys, parent term IDs as values), 'names' |