Last active
February 6, 2017 16:47
-
-
Save seoindex/6f42b6450aed78654960b4f313bf15a9 to your computer and use it in GitHub Desktop.
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
//Disabiilitare tutti gli aggiornamenti | |
define( 'WP_AUTO_UPDATE_CORE', false ); | |
//Disabiilitare aggiornamenti plugin automatici | |
add_filter( 'auto_update_plugin', '__return_false' ); | |
//Disabiilitare aggiornamenti temi automatici | |
add_filter( 'auto_update_theme', '__return_false' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment