Wednesday, June 6, 2012

Customize wprdress Login Page

These are things you would put in the active theme's  functions.php file.



function change_wp_login_url() {
    echo bloginfo('url');
}
add_filter('login_headerurl', 'change_wp_login_url');

function change_wp_login_title() {
    echo get_option('blogname');
}
add_filter('login_headertitle', 'change_wp_login_title');

?>

No comments:

Post a Comment