Thursday, January 26, 2017

Replace Default WordPress Logo in the Login Dashboard Page

function custom_loginlogo() {
echo '';
}
add_action('login_head', 'custom_loginlogo');
add_filter( 'login_headerurl', 'custom_loginlogo_url' );
function custom_loginlogo_url($url) {
    return 'http://www.your-site-url.com';
}

No comments:

Post a Comment