If you want full control over when plugins are updated, you can disable WordPress automatic plugin updates with a simple filter.
Steps
- Add the code below to your theme’s
functions.php. - Save the file.
- WordPress will stop automatically updating plugins.
/**
* Disable automatic plugin updates
*/
function custom_disable_plugin_auto_updates( $update, $plugin ) {
return false;
}
add_filter(
'auto_update_plugin',
'custom_disable_plugin_auto_updates',
10,
2
);