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:

  1. Before WordPress begins the core upgrade process.
  2. Before Maintenance Mode is enabled.
  3. Before WordPress begins copying over the necessary files.
  4. Before Maintenance Mode is disabled.
  5. Before the database is upgraded.

Top ↑

Parameters

$feedback

(string)The core update feedback messages.


Top ↑

Source

File: wp-admin/includes/update-core.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
2.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.