WP_REST_Search_Controller::get_search_handler()
Gets the search handler to handle the current request.
Метод класса: WP_REST_Search_Controller{}
Хуков нет.
Возвращает
WP_REST_Search_Handler|WP_Error
. Search handler for the request type, or WP_Error object on failure.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_search_handler( $request );
- $request(WP_REST_Request) (обязательный)
- Full details about the request.
Список изменений
С версии 5.0.0 | Введена. |
Код WP_REST_Search_Controller::get_search_handler() WP REST Search Controller::get search handler WP 6.6.2
protected function get_search_handler( $request ) { $type = $request->get_param( self::PROP_TYPE ); if ( ! $type || ! is_string( $type ) || ! isset( $this->search_handlers[ $type ] ) ) { return new WP_Error( 'rest_search_invalid_type', __( 'Invalid type parameter.' ), array( 'status' => 400 ) ); } return $this->search_handlers[ $type ]; }