after_core_auto_updates_settings WordPress Action Hook
The "after_core_auto_updates_settings" hook is used to perform an action after the settings for the WordPress core auto-updates have been updated.
do_action( 'after_core_auto_updates_settings', array $auto_update_settings ) #
Fires after the major core auto-update settings.
Parameters
- $auto_update_settings
(array)Array of core auto-update settings.
- 'dev'
(bool) Whether to enable automatic updates for development versions. - 'minor'
(bool) Whether to enable minor automatic core updates. - 'major'
(bool) Whether to enable major automatic core updates.
- 'dev'
Source
File: wp-admin/update-core.php
Changelog
Version | Description |
---|---|
5.6.0 | Introduced. |