wppaste
WordPress

WP_REST_Terms_Controller::__construct( string $taxonomy )

Since
4.7.0
Source
wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:66
Constructor.

Parameters

$taxonomystring
Taxonomy key.

Uses · 2

Source

	public function __construct( $taxonomy ) {		$this->taxonomy  = $taxonomy;		$tax_obj         = get_taxonomy( $taxonomy );		$this->rest_base = ! empty( $tax_obj->rest_base ) ? $tax_obj->rest_base : $tax_obj->name;		$this->namespace = ! empty( $tax_obj->rest_namespace ) ? $tax_obj->rest_namespace : 'wp/v2'; 		$this->meta = new WP_REST_Term_Meta_Fields( $taxonomy );	}

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.