wppaste
WordPress

WP_REST_Terms_Controller::get_collection_params(): array

Since
4.7.0
Source
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:1130
Retrieves the query params for collections.

Return

array
Collection parameters.

Hooks fired · 1

One hook fires while WP_REST_Terms_Controller::get_collection_params() runs, in this order:

  1. apply_filters( rest_{$this->taxonomy}_collection_params )filterline 1229 (+99 into the body)

    Filters collection parameters for the terms controller.

Uses · 4

Used by · 2

Source

	public function get_collection_params() {		$query_params = parent::get_collection_params();		$taxonomy     = get_taxonomy( $this->taxonomy ); 		$query_params['context']['default'] = 'view'; 		$query_params['exclude'] = array(			'description' => __( 'Ensure result set excludes specific IDs.' ),			'type'        => 'array',			'items'       => array(				'type' => 'integer',			),			'default'     => array(),		); 		$query_params['include'] = array(			'description' => __( 'Limit result set to specific IDs.' ),			'type'        => 'array',			'items'       => array(				'type' => 'integer',			),			'default'     => array(),		); 		if ( ! $taxonomy->hierarchical ) {			$query_params['offset'] = array(				'description' => __( 'Offset the result set by a specific number of items.' ),				'type'        => 'integer',			);		} 		$query_params['order'] = array(			'description' => __( 'Order sort attribute ascending or descending.' ),			'type'        => 'string',			'default'     => 'asc',			'enum'        => array(				'asc',				'desc',			),		); 		$query_params['orderby'] = array(			'description' => __( 'Sort collection by term attribute.' ),			'type'        => 'string',			'default'     => 'name',			'enum'        => array(				'id',				'include',				'name',				'slug',				'include_slugs',				'term_group',				'description',				'count',			),		); 		$query_params['hide_empty'] = array(			'description' => __( 'Whether to hide terms not assigned to any posts.' ),			'type'        => 'boolean',			'default'     => false,		); 		if ( $taxonomy->hierarchical ) {			$query_params['parent'] = array(				'description' => __( 'Limit result set to terms assigned to a specific parent.' ),				'type'        => 'integer',			);		} 		$query_params['post'] = array(			'description' => __( 'Limit result set to terms assigned to a specific post.' ),			'type'        => 'integer',			'default'     => null,		); 		$query_params['slug'] = array(			'description' => __( 'Limit result set to terms with one or more specific slugs.' ),			'type'        => 'array',			'items'       => array(

History

Introduced in 4.7.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.