Ever wanted to change the default WordPress logo from the wp-login.php page? Well you can do that easily. Copy following snippet and paste it in your theme’s functions.php file and edit the URL of the image.
// login page logo function wphelp_login_logo() { ?> <style type="text/css"> h1 a { background-image: url(<?php echo get_template_directory_uri(); ?>/img/text-logo.png) !important; width:300px !important; height:100px !important; background-size: 300px!important; } </style> <?php } add_action('login_head', 'wphelp_login_logo');