This is great for people building websites for clients who want to have their own branding all over the installation. Us this small snippet to Customize WordPress Login Logo Without a Plugin
1 2 3 4 5 6 7 8 |
<?php function my_custom_login_logo() { ?> <style type="text/css"> h1 a { background-image:url(<?=get_bloginfo('template_directory')?>/images/custom-login-logo.gif) !important; } </style> <?php } add_action('login_head', 'my_custom_login_logo'); |
Have any query? Feel free to ask in our QuestionBank section