WC_REST_Authentication::check_authentication_error()
Check for authentication error.
Метод класса: WC_REST_Authentication{}
Хуков нет.
Возвращает
WP_Error|null|true|false
.
Использование
$WC_REST_Authentication = new WC_REST_Authentication(); $WC_REST_Authentication->check_authentication_error( $error );
- $error(WP_Error|null|true|false) (обязательный)
- Error data.
Код WC_REST_Authentication::check_authentication_error() WC REST Authentication::check authentication error WC 9.3.3
public function check_authentication_error( $error ) { // Pass through other errors. if ( ! empty( $error ) ) { return $error; } return $this->get_error(); }