Last active
November 25, 2023 04:04
-
-
Save zackeryfretty/936d83e4be68bf5c34ba7e363a31e2c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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