In Article, we given code for, how to change wordpress login page logo, Many people want to remove the wordpress login page logo and put their site logo. There are millions of wordpress CMS user. In Article, we given code for, how to change wordpress login page logo, Many people want to remove the wordpress login page logo and put their website logo.
how to change wordpress login page logo
Using following code you can easily add your custom logo in wordpress admin page. You just need to add the following code into your functions.php file.
function wplogo() { echo '<style type="text/css"> h1 a { background-image:url('.get_bloginfo('template_directory').'/images/logo.png) !important; } </style>'; } add_action('login_head', 'wplogo');