Reviews_Listing_Controller::get_rendered_item_permissions_check( WP_REST_Request $request )

Summary

Checks if a given request has access to read the rendered shortcodes.


Parameters

$request

(WP_REST_Request) (Required) Full details about the request.


Return

(true|WP_Error) True if the request has read access, WP_Error object otherwise.


Source

File: src/BigCommerce/Rest/Reviews_Listing_Controller.php

	 */
	public function get_rendered_item_permissions_check( $request ) {
		// no access checks for now
		return true;

User Contributed Notes

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