How to Change the Login Logo in WordPress

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 '<style type="text/css">
        .login h1 a {
          background-image: url(logo.svg) ; // Your Logo Here
          background-position: center center;
		  background-size: contain;
	      width: 100%;		
        }
    </style>';
}
add_action('login_head', 'custom_login_logo');

function login_url(){
return "https://wicky.co"; // Your URL Here
}
add_filter('login_headerurl', 'login_url');
				
			

Free Brand Messaging Worksheet

Define Your Voice and Connect with Your Audience

More Free Resources

Let's Work Together

Big ideas start with a quick chat. Let’s talk!