Home/Hooks/after_core_auto_updates_settings
ACTION

after_core_auto_updates_settings

Fires after the major core auto-update settings. Array of core auto-update settings. }

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

Usage

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

Action Callback:

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

Parameters

$auto_update_settings

Parameter 1

⚡ Action Hook

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