W3cubDocs

/WordPress

WP_REST_Global_Styles_Controller::get_theme_items_permissions_check( WP_REST_Request $request ): true|WP_Error

Checks if a given request has access to read a single theme global styles config.

Parameters

$requestWP_REST_Requestrequired
Full details about the request.

Return

true|WP_Error True if the request has read access for the item, WP_Error object otherwise.

Source

public function get_theme_items_permissions_check( $request ) {
	return $this->get_theme_item_permissions_check( $request );
}

Changelog

Version Description
6.7.0 Allow users with edit post capabilities to view theme global styles.
6.0.0 Introduced.