Skip to content

Instantly share code, notes, and snippets.

View fearlex's full-sized avatar
🎯
Focused

Arleys Resco fearlex

🎯
Focused
View GitHub Profile
@fearlex
fearlex / functions.php
Created September 7, 2022 20:03
Disable Wordpress Auto Update Themes, Plugin & Plugin UI
// Disable Plugin Automatic Updates
add_filter( 'auto_update_plugin', '__return_false' );
// Disable Themes Automatic Updates
add_filter( 'auto_update_theme', '__return_false' );
// Disable plugins auto-update UI elements.
add_filter( 'plugins_auto_update_enabled', '__return_false' );