Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ronalfy/9f97d2086fe960d3b5c4a608161be079 to your computer and use it in GitHub Desktop.
Save ronalfy/9f97d2086fe960d3b5c4a608161be079 to your computer and use it in GitHub Desktop.
Enable Automatic Updates Plugins/Themes on Flywheel
<?php
/* Enable auto-updates of plugins/themes with cron */
add_action(
'wp_update_plugins',
function() {
if ( wp_doing_cron() && ! doing_action( 'wp_maybe_auto_update' ) ) {
do_action( 'wp_maybe_auto_update' );
}
},
20
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment