• Is it possible to make a custom login screen with your own background and logo in wordpress 2.7? I used to have a plugin for an older version of WP, but it doesn’t work with version 2.7.

Viewing 1 replies (of 1 total)
  • yup.. its possible to make a custom login page… you don’t need to change the default css files. just make a new file and use this code:

    function customlogin() {
    echo '<link rel="stylesheet" type="text/css" href="URL OF YOUR CSS FILE HERE" />';
    }
    add_action('login_head', 'customlogin');
Viewing 1 replies (of 1 total)
  • The topic ‘Possible to have custom login page in 2.7’ is closed to new replies.