WP_Ajax_Upgrader_Skin::feedback( string|array|WP_Error $data, mixed $args )
Stores a message about the upgrade.
Parameters
- $data
-
(string|array|WP_Error) (Required) Message data.
- $args
-
(mixed) (Optional) text replacements.
Source
File: wp-admin/includes/class-wp-ajax-upgrader-skin.php
public function feedback( $data, ...$args ) { if ( is_wp_error( $data ) ) { foreach ( $data->get_error_codes() as $error_code ) { $this->errors->add( $error_code, $data->get_error_message( $error_code ), $data->get_error_data( $error_code ) ); } } parent::feedback( $data, ...$args ); }
Changelog
Version | Description |
---|---|
5.3.0 | Formalized the existing ...$args parameter by adding it to the function signature. |
4.6.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_ajax_upgrader_skin/feedback