Viewing 4 replies - 1 through 4 (of 4 total)
  • you can edit whatever you like

    its nice to leave a WP link somewhere, since its WP only form of advertising really, but not required

    Just remember, if you edit core files rather than using plugins or theme hooks, you will lose all your edits on every upgrade

    Thread Starter danielbryan

    (@danielbryan)

    I’m working on adding the WP logo to my site, and login as we speak.

    Thanks for quickly answering my question!

    Just remember, if you edit core files rather than using plugins or theme hooks, you will lose all your edits on every upgrade

    I will keep this in mind. Thx

    use plugin BM Custom Login…
    thats work for me..

    // THIS ADDS CUSTOM LOGO TO LOGIN PAGE
    function my_custom_login_logo() {
        echo '<style type="text/css">
            h1 a { background-image:url('.get_bloginfo('template_directory').'/images/logo.png) !important; height:145px !important; }
        </style>';
    }
    add_action('login_head', 'my_custom_login_logo');

    in your theme functions.php will replace logo with your own, as an option

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘/wp-admin login customization’ is closed to new replies.