WP_REST_Search_Handler::get_type()publicWP 5.0.0

Gets the object type managed by this search handler.

Method of the class: WP_REST_Search_Handler{}

No Hooks.

Return

String. Object type identifier.

Usage

$WP_REST_Search_Handler = new WP_REST_Search_Handler();
$WP_REST_Search_Handler->get_type();

Changelog

Since 5.0.0 Introduced.

WP_REST_Search_Handler::get_type() code WP 6.5.2

public function get_type() {
	return $this->type;
}