WP_REST_Search_Handler::get_subtypes()publicWP 5.0.0

Gets the object subtypes managed by this search handler.

Метод класса: WP_REST_Search_Handler{}

Хуков нет.

Возвращает

Строку[]. Array of object subtype identifiers.

Использование

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

Список изменений

С версии 5.0.0 Введена.

Код WP_REST_Search_Handler::get_subtypes() WP 6.5.2

public function get_subtypes() {
	return $this->subtypes;
}