WP_REST_Taxonomies_Controller::get_item( WP_REST_Request $request ): WP_REST_Response|WP_Error

In this article

Retrieves a specific taxonomy.

Parameters

$requestWP_REST_Requestrequired
Full details about the request.

Return

WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.

Source

public function get_item( $request ) {
	$tax_obj = get_taxonomy( $request['taxonomy'] );

	if ( empty( $tax_obj ) ) {
		return new WP_Error(
			'rest_taxonomy_invalid',
			__( 'Invalid taxonomy.' ),
			array( 'status' => 404 )
		);
	}

	$data = $this->prepare_item_for_response( $tax_obj, $request );

	return rest_ensure_response( $data );
}

Changelog

VersionDescription
4.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.