It is not recommended to disable auto update for security reason. But there are ways to do so if you want to.
- add this line to wp-config.php to disable all automatic WordPress updates.
define(
'WP_AUTO_UPDATE_CORE'
, false );
- disable plugin updates:
add_filter(
'auto_update_plugin'
,
'__return_false'
);
- disable theme updates:
add_filter(
'auto_update_theme'
,
'__return_false'
);
- install Easy Updates Manager plugin to manage your options.
https://www.youtube.com/watch?time_continue=14&v=DN_QjPAHwmY
Comments