update_feedback WordPress Filter Hook
The update_feedback hook is called whenever feedback is updated. It allows you to run your own code in reaction to feedback being updated.
apply_filters( 'update_feedback', string $feedback ) #
Filters feedback messages displayed during the core update process.
Description
The filter is first evaluated after the zip file for the latest version has been downloaded and unzipped. It is evaluated five more times during the process:
- Before WordPress begins the core upgrade process.
- Before Maintenance Mode is enabled.
- Before WordPress begins copying over the necessary files.
- Before Maintenance Mode is disabled.
- Before the database is upgraded.
Parameters
- $feedback
(string)The core update feedback messages.
Source
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |