WP_REST_Widgets_Controller::permissions_check
Performs a permissions check for managing widgets.
Метод класса: WP_REST_Widgets_Controller{}
Хуков нет.
Возвращает
true|WP_Error.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->permissions_check( $request );
- $request(WP_REST_Request) (обязательный)
- Full details about the request.
Список изменений
| С версии 5.8.0 | Введена. |
Код WP_REST_Widgets_Controller::permissions_check() WP REST Widgets Controller::permissions check WP 6.9.4
protected function permissions_check( $request ) {
if ( ! current_user_can( 'edit_theme_options' ) ) {
return new WP_Error(
'rest_cannot_manage_widgets',
__( 'Sorry, you are not allowed to manage widgets on this site.' ),
array(
'status' => rest_authorization_required_code(),
)
);
}
return true;
}