WP_REST_Controller::get_item_permissions_check( WP_REST_Request $request )

Checks if a given request has access to get a specific item.


Description Description


Parameters Parameters

$request

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


Top ↑

Return Return

(WP_Error|bool) True if the request has read access for the item, WP_Error object otherwise.


Top ↑

Source Source

File: wp-includes/rest-api/endpoints/class-wp-rest-controller.php

	public function get_item_permissions_check( $request ) {
		/* translators: %s: Method name. */
		return new WP_Error( 'invalid-method', sprintf( __( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( 'status' => 405 ) );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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