WP_Upgrader_Skin::error() WordPress Method
This method is used to display an error message during the upgrade process. It accepts a single parameter, which is the error message to be displayed.
WP_Upgrader_Skin::error( string|WP_Error $errors ) #
Parameters
- $errors
(string|WP_Error)(Required)Errors.
Source
File: wp-admin/includes/class-wp-upgrader-skin.php
public function error( $errors ) {
if ( ! $this->done_header ) {
$this->header();
}
if ( is_string( $errors ) ) {
$this->feedback( $errors );
} elseif ( is_wp_error( $errors ) && $errors->has_errors() ) {
foreach ( $errors->get_error_messages() as $message ) {
if ( $errors->get_error_data() && is_string( $errors->get_error_data() ) ) {
$this->feedback( $message . ' ' . esc_html( strip_tags( $errors->get_error_data() ) ) );
} else {
$this->feedback( $message );
}
}
}
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 2.8.0 | Introduced. |