wp_maybe_auto_update()WP 3.7.0

Performs WordPress automatic background updates.

Updates WordPress core plus any plugins and themes that have automatic updates enabled.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

wp_maybe_auto_update();

Список изменений

С версии 3.7.0 Введена.

Код wp_maybe_auto_update() WP 6.5.2

function wp_maybe_auto_update() {
	require_once ABSPATH . 'wp-admin/includes/admin.php';
	require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';

	$upgrader = new WP_Automatic_Updater();
	$upgrader->run();
}