在里面wp-config.php
添加
// Disable all wordpress auto updates.
define(\'AUTOMATIC_UPDATER_DISABLED\', true);
define(\'WP_AUTO_UPDATE_CORE\', false);
在中
functions.php
添加
// Disable auto plugin updates
add_filter(\'auto_update_plugin\', \'__return_false\');
// Disable auto theme updates
add_filter(\'auto_update_theme\', \'__return_false\');