Skip to content

Instantly share code, notes, and snippets.

@zackeryfretty
Last active November 25, 2023 04:04
Show Gist options
  • Save zackeryfretty/936d83e4be68bf5c34ba7e363a31e2c3 to your computer and use it in GitHub Desktop.
Save zackeryfretty/936d83e4be68bf5c34ba7e363a31e2c3 to your computer and use it in GitHub Desktop.
<?php
// Enable Theme/Plugin Updates on FlyWheel (FIX)
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