Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other custom login for wordpress

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #36757
    johnjf
    Member

    I’m trying to make a custom login for wordpress and the tutorials I’ve tried are not working. I’ve tried a few different ones. Once I add the function code all it’s doing is nothing but making my site go blank or the login page stays the same. Is there a change to the new wordpress why there code isn’t working?

    #97038
    TheDoc
    Member

    Can you show us the code that you’re using? Are you sure you’re adding it to your functions.php file?

    #97053
    johnjf
    Member
    function custom_login() {
    echo '';
    }
    #97054
    johnjf
    Member

    anyone know of a good tut that will show me how to create my own? that will work?

    #97052
    TheDoc
    Member

    From Chris’ other website, Digging Into WordPress:

    // custom admin login logo
    function custom_login_logo() {
    echo '';
    }
    add_action('login_head', 'custom_login_logo');

    http://digwp.com/2010/03/wordpress-functions-php-template-custom-functions/

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘Other’ is closed to new topics and replies.