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.


Top ↑

Source

File: wp-admin/update-core.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
5.6.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.