WP_REST_Request::get_attributes()publicWP 4.4.0

Retrieves the attributes for the request.

These are the options for the route that was matched.

Method of the class: WP_REST_Request{}

No Hooks.

Return

Array. Attributes for the request.

Usage

$WP_REST_Request = new WP_REST_Request();
$WP_REST_Request->get_attributes();

Changelog

Since 4.4.0 Introduced.

WP_REST_Request::get_attributes() code WP 6.4.3

public function get_attributes() {
	return $this->attributes;
}