Home/Hooks/_core_updated_successfully
ACTION

_core_updated_successfully

Fires after WordPress core has been successfully updated.

wp-admin/includes/update-core.php
Line 1596
1 Parameter
View Source

Usage

add_action( '_core_updated_successfully', 'your_callback_function', 10, 1 );

Action Callback:

function your_callback_function( $wp_version ) {
    // Your code here
    
}

Parameters

$wp_version

Parameter 1

⚡ Action Hook

Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.