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

WPCodeBox
39
This WordPress snippet disables password reset notices sent to the admin, helping to reduce email clutter and streamline site management.
<?php
add_action('init',function(){
remove_action( 'after_password_reset', 'wp_password_change_notification' );
});