Return to Snippet

Revision: 52595
at October 27, 2011 04:27 by krembo99


Initial Code
function custom_loginlogo() {
echo '<style type="text/css">
h1 a {background-image: url('.get_bloginfo('template_directory').'/images/login_logo.png) !important; }
</style>';
}
add_action('login_head', 'custom_loginlogo');


<?php
add_filter( 'login_headerurl', 'custom_loginlogo_url' );
function custom_loginlogo_url($url) {
	return 'http://www.wpbeginner.com';
}
?>

Initial URL


Initial Description


Initial Title
Wordpress - Change Login logo and login LINK

Initial Tags


Initial Language
PHP