WP_REST_Term_Meta_Fields::get_rest_field_type

Advertisement

Summery Summery

Retrieves the type for register_rest_field().

Syntax Syntax

WP_REST_Term_Meta_Fields::get_rest_field_type()

Return Return

(string) The REST field type.

Source Source

File: wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php

	public function get_rest_field_type() {
		return 'post_tag' === $this->taxonomy ? 'tag' : $this->taxonomy;
	}

Advertisement

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.

Advertisement

Leave a Reply