fazlurr
7/16/2014 - 4:33 AM

Customize WP Login Page - http://css-tricks.com/snippets/wordpress/customize-login-page/

<?php

// Change The Logo
function custom_login_logo()
{
	echo '<style type="text/css">h1 a { background: url('.get_bloginfo('template_directory').'/images/logo-login.png) 50% 50% no-repeat !important; }</style>';
}
add_action('login_head', 'custom_login_logo');

// Change The URL
function change_wp_login_url()
{
	return get_bloginfo('url');
}
add_filter('login_headerurl', 'change_wp_login_url');

// Change The Title
function change_wp_login_title()
{
	return get_option('blogname');
}
add_filter('login_headertitle', 'change_wp_login_title');

?>