wp_maybe_auto_update()
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 maybe auto update WP 6.7.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(); }