Schedule WordPress Auto-Updates to only run during business hours

This one is actually surprisingly simple; add this to your wp-config.php file and all automatic updates will be blocked when outside of the specified hours: // Suspend updates when outside of business hours, 9:00 AM to 5:30 PM $updates_suspended = (date(‘Hi’) < 0900 || date(‘Hi’) > 1730); define( ‘AUTOMATIC_UPDATER_DISABLED’, $updates_suspended ); You can also use … Read more

Automating the Backup Process (30+ websites)

I’m not sure if this will address your issue… But there’s something new in WorldWordPress. http://infinitewp.com/ It’s akin to ManageWP, but free :o) I’m not affiliated with them in any form, just starting to play with it. (ht: wpmail.me) It’s a platform that you install in your server. Add the client plugin to your WPs. … Read more

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