In this WordPress tutorial I will show you how to change the default WordPress logo and link on the login page.
Code Snippets Plugin:
https://wordpress.org/plugins/code-snippets/
Timestamps:
- 0:00 Introduction
- 0:30 Change WordPress Logo
- 2:03 Change Logo URL Link
Code Snippet:
function custom_login_logo() {
echo '';
}
add_action('login_head', 'custom_login_logo');
function login_url(){
return "https://wickydesign.com"; // Your URL Here
}
add_filter('login_headerurl', 'login_url');