Uses
| Uses | Description | 
|---|---|
| wp-includes/l10n.php: __() | Retrieve the translation of $text. | 
| wp-includes/class-wp-error.php: WP_Error::__construct() | Initialize the error. | 
Gets the search handler to handle the current request.
(WP_REST_Request) (Required) Full details about the request.
(WP_REST_Search_Handler|WP_Error) Search handler for the request type, or WP_Error object on failure.
File: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php
protected function get_search_handler( $request ) {
		$type = $request->get_param( self::PROP_TYPE );
		if ( ! $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 ];
	}  | Version | Description | 
|---|---|
| 5.0.0 | Introduced. | 
    © 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
    https://developer.wordpress.org/reference/classes/wp_rest_search_controller/get_search_handler