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

WPCodeBox
130
Learn how to easily redirect users after logout in WordPress with this simple snippet.
<?php
add_filter('logout_redirect', function() { return esc_url(home_url('/')); });