In general the login or registration of wordpress site contain wordpress logo and wordpress.org link as below.
But we want to change thous link and logo, is it possibleThe answer will
The code as below-
add_actionFor any question about this( "login_head", "my_login_head");
function my_login_head( ) {
echo "
<style >
body . login #login h1 a {
background : url('http://yourdomain.com/img/logo.png') no-repeat scroll center top transparent;
height : 119px;
width : 319px;
}
</style >
";
}
function loginpage_custom_link( ) {
return 'http://advancetechtutorial.blogspot.com';
}
add_filter( 'login_headerurl','loginpage_custom_link');
function change_title_on_logo( ) {
'Tech Tutorial'; return
}
add_filter( 'login_headertitle', 'change_title_on_logo');