WP_REST_Search_Controller::get_search_handler( WP_REST_Request $request ): WP_REST_Search_Handler|WP_Error

In this article

Gets the search handler to handle the current request.

Parameters

$requestWP_REST_Requestrequired
Full details about the request.

Return

WP_REST_Search_Handler|WP_Error Search handler for the request type, or WP_Error object on failure.

Source

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 ];
}

Changelog

VersionDescription
5.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.