wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
rest_application_password_check_errors › WordPress Function
Seit5.6.0
Veraltetn/v
› rest_application_password_check_errors ( $result )
| Parameter: |
|
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Checks for errors when using application password-based authentication.
Quellcode
function rest_application_password_check_errors( $result ) {
global $wp_rest_application_password_status;
if ( ! empty( $result ) ) {
return $result;
}
if ( is_wp_error( $wp_rest_application_password_status ) ) {
$data = $wp_rest_application_password_status->get_error_data();
if ( ! isset( $data['status'] ) ) {
$data['status'] = 401;
}
$wp_rest_application_password_status->add_data( $data );
return $wp_rest_application_password_status;
}
if ( $wp_rest_application_password_status instanceof WP_User ) {
return true;
}
return $result;
}