How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

WPCodeBox
38
Learn how to disable automatic theme updates with this code snippet. Prevent unwanted changes by turning off auto-updates for your WordPress themes.
//Disable all updates
add_filter('automatic_updater_disabled','__return_true');
//Disable theme updates
add_filter('auto_update_theme','__return_false');