How do I exclude plugins from getting automatically updated?

Instead of using the code from the question in functions.php, replace it with this: /** * Prevent certain plugins from receiving automatic updates, and auto-update the rest. * * To auto-update certain plugins and exclude the rest, simply remove the “!” operator * from the function. * * Also, by using the ‘auto_update_theme’ or ‘auto_update_core’ … Read more

How exactly do automatic updates work?

PHP isn’t a permanently-running process: it only runs when requested. So as far as I can tell, WordPress can only update itself when someone loads a web page. But the update process is not instantaneous, so surely a user visiting the site would have a really slow page load. Is there a different trick they … Read more

How Do I Configure Automatic Updates in WordPress 3.7?

Automatic updates are automatic. The basic, default behavior in WordPress 3.7 is automatic update of core for minor versions (i.e. X.Y.Z to X.Y.Z+1.) No configuration options are exposed in the UI. To change the behavior, you’ll need to modify your wp-config.php file, or add some filters: Easy Disabling Add the following to wp_config.php: define( ‘AUTOMATIC_UPDATER_DISABLED’, … Read more