WP_REST_Templates_Controller::update_item_permissions_check()publicWP 5.8.0

Checks if a given request has access to write a single template.

Метод класса: WP_REST_Templates_Controller{}

Хуков нет.

Возвращает

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

Использование

$WP_REST_Templates_Controller = new WP_REST_Templates_Controller();
$WP_REST_Templates_Controller->update_item_permissions_check( $request );
$request(WP_REST_Request) (обязательный)
Full details about the request.

Список изменений

С версии 5.8.0 Введена.

Код WP_REST_Templates_Controller::update_item_permissions_check() WP 6.5.2

public function update_item_permissions_check( $request ) {
	return $this->permissions_check( $request );
}