How to Change WordPress Login Logo, Login Header Url & Login Header Title? Copy this code and paste into your theme file functions.php
<?php
function custom_login_logo()
{
echo '<style type="text/css">'.
'h1 a { background-image:url(http://www.google.co.id/images/srpr/logo3w.png) !important;}'.
'</style>';
}
add_action('login_head', 'custom_login_logo');
function update_wp_login_url()
{
return 'http://www.wp-magz.com';
}
function update_wp_login_title()
{
return 'WordPress Magazine';
}
add_filter('login_headerurl', 'update_wp_login_url');
add_filter('login_headertitle', 'update_wp_login_title');
?>



{ 0 comments… add one now }
Leave a Comment