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

    (@boober)

    try
    <?php wp_loginout(); ?>

    Thread Starter charlieholder

    (@charlieholder)

    That did the trick. Thank you very much.

    This worked great for the log-in and log-out, but I also use a “register” link on my menu. Is there a way to combine all three functions so that logged-in users don’t have to have the register button?

    Sorry, just haven’t gotten around to learning php.

    Thanks,
    Stu

    http://stu-in-flag/blog/

    Stu,
    http://codex.wordpress.org/Template_Tags/wp_register

    This tag displays either the “Register” link to users that are not logged in or the “Site Admin” link if a user is logged in.

    So your buttons would say either:

    FOR NOT LOGGED IN PERSON:
    Register | Login

    OR

    FOR LOGGED IN USER:
    Site Admin | Logout

    Personally I make efforts to delete these links from my themes, for any site that isn’t collecting registrants. If you just have a few authors (or just yourself) then memorize the URL’s you need (or bookmark them) and remove the links from your public website theme to avoid reader confusion and unnecessary log-in attempts.

    The URL’s you need are simply:

    Yoursite.com/wp-login.php
    Yoursite.com/wp-admin

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Login Link’ is closed to new replies.