WP_REST_Global_Styles_Controller::get_available_actions() WordPress Method
The WP_REST_Global_Styles_Controller::get_available_actions() method is used to get the available actions for the global styles controller.
WP_REST_Global_Styles_Controller::get_available_actions() #
Get the link relations available for the post and current user.
Return
(array) List of link relations.
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php
protected function get_available_actions() { $rels = array(); $post_type = get_post_type_object( $this->post_type ); if ( current_user_can( $post_type->cap->publish_posts ) ) { $rels[] = 'https://api.w.org/action-publish'; } return $rels; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.9.0 | Introduced. |