WP_Ajax_Upgrader_Skin::feedback() WordPress Method
The WP_Ajax_Upgrader_Skin::feedback() method is used to give feedback to the user during an AJAX upgrade process.
WP_Ajax_Upgrader_Skin::feedback( string|array|WP_Error $feedback, mixed $args ) #
Stores a message about the upgrade.
Parameters
- $feedback
(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( $feedback, ...$args ) { if ( is_wp_error( $feedback ) ) { foreach ( $feedback->get_error_codes() as $error_code ) { $this->errors->add( $error_code, $feedback->get_error_message( $error_code ), $feedback->get_error_data( $error_code ) ); } } parent::feedback( $feedback, ...$args ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.9.0 | Renamed $data to $feedback for PHP 8 named parameter support. |
5.3.0 | Formalized the existing ...$args parameter by adding it to the function signature. |
4.6.0 | Introduced. |