WP_REST_Menu_Locations_Controller::get_item( WP_REST_Request $request ): WP_Error|WP_REST_Response

Retrieves a specific menu location.


Parameters

$request WP_REST_Request Required
Full details about the request.

Top ↑

Return

WP_Error|WP_REST_Response Response object on success, or WP_Error object on failure.


Top ↑

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php. View all references

public function get_item( $request ) {
	$registered_menus = get_registered_nav_menus();
	if ( ! array_key_exists( $request['location'], $registered_menus ) ) {
		return new WP_Error( 'rest_menu_location_invalid', __( 'Invalid menu location.' ), array( 'status' => 404 ) );
	}

	$location              = new stdClass();
	$location->name        = $request['location'];
	$location->description = $registered_menus[ $location->name ];

	$data = $this->prepare_item_for_response( $location, $request );

	return rest_ensure_response( $data );
}


Top ↑

Changelog

Changelog
Version Description
5.9.0 Introduced.

Top ↑

User Contributed Notes

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