functions.php extension to include only specific plugins in the automatic updates
This file contains 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
function auto_update_specific_plugins ( $update, $item ) { | |
// List your plugins to be updated here | |
$plugins = array ( | |
'cookie-notice', | |
'relevanssi', | |
'updraftplus', | |
'and-any-other-plugin-slugs' | |
); | |
if ( in_array( $item->slug, $plugins ) ) { | |
return true; | |
} | |
return $update; | |
} | |
add_filter( 'auto_update_plugin', 'auto_update_specific_plugins', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment