WP_REST_Font_Collections_Controller::get_items_permissions_check( $request ): true|WP_Error

In this article

Checks whether the user has permissions to use the Fonts Collections.

Return

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

Source

public function get_items_permissions_check( $request ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
	if ( current_user_can( 'edit_theme_options' ) ) {
		return true;
	}

	return new WP_Error(
		'rest_cannot_read',
		__( 'Sorry, you are not allowed to access font collections.' ),
		array(
			'status' => rest_authorization_required_code(),
		)
	);
}

Changelog

VersionDescription
6.5.0Introduced.

User Contributed Notes

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