• We are in the middle of installing a new wordpress blog. I was testing it to see what members would ‘see’ when they were looking at the site and noticed something strange, there doesn’t seem to be login/logout link, or a profile link once a person is logged into the site, or a register link if they are new to the site. Is this a wordpress issue or a theme issue? Would there be a plugin for something like this, or could we use some sort of a < if > conditional statement in the templates to fix it? Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • <ul>
    <?php wp_register(); ?>
    <li><?php wp_loginout(); ?></li>
    <?php wp_meta(); ?>
    </ul>

    Will generate the login/out link as well as Register if enabled in your control panel.

    Thread Starter webdressing

    (@webdressing)

    THANK YOU Len, it seems to work well, except for the fact that it shows regular users a ‘Site Admin’ link. Do you happen to know why it does this? Why would a registered site user need a admin link? Shouldn’t only the admin see that?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘login – logout – profile links?’ is closed to new replies.