_core_updated_successfully action-hook . WP 3.3.0
Fires after WordPress core has been successfully updated.
Usage
add_action( '_core_updated_successfully', 'action_function_name_9107' ); function action_function_name_9107( $wp_version ){ // action... }
- $wp_version(string)
- The current WordPress version.
Changelog
Since 3.3.0 | Introduced. |
Where the hook is called
_core_updated_successfully
wp-admin/includes/update-core.php 1315
do_action( '_core_updated_successfully', $wp_version );
Where in WP core the hook is used WordPress
wp-admin/includes/update-core.php 125
add_action( '_core_updated_successfully', '_redirect_to_about_wordpress' );