WP_REST_Menu_Locations_Controller::get_items_permissions_check()publicWP 5.9.0

Checks whether a given request has permission to read menu locations.

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

Хуков нет.

Возвращает

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

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

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

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

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

Код WP_REST_Menu_Locations_Controller::get_items_permissions_check() WP 6.4.3

public function get_items_permissions_check( $request ) {
	if ( ! current_user_can( 'edit_theme_options' ) ) {
		return new WP_Error(
			'rest_cannot_view',
			__( 'Sorry, you are not allowed to view menu locations.' ),
			array( 'status' => rest_authorization_required_code() )
		);
	}

	return true;
}