WP_REST_Request::get_attributes() public WP 4.4.0
Retrieves the attributes for the request.
These are the options for the route that was matched.
{} It's a 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. |
Code of WP_REST_Request::get_attributes() WP REST Request::get attributes WP 5.6
public function get_attributes() {
return $this->attributes;
}