• Hi all, if you want to hide the login logo, just add the following code to your functions.php file:

    add_action( 'login_head', 'theme_hide_login_logo_login_head' );
    
    function theme_hide_login_logo_login_head() {
    	echo '<style> #login h1 { display: none; } </style>';
    }
    
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Login Logo’ is closed to new replies.