How to disable automatic updates in WordPress
We can disable the automatic updates in the WordPress by tweaking the configuration file 'wp-config.php'.
To completely disable all types of automatic updates, add the below line to the WordPress configuration file.
define( 'AUTOMATIC_UPDATER_DISABLED', true );
That's all...