• Resolved Scott.Reinmuth

    (@scottreinmuth-1)


    The code I am using is not working. I want it to echo dashboard if an admin or author is logged in and I want it to show profile if a normal user is logged in. This is the code I have so far…

    <?php
    if ( is_user_logged_in() && current_user_can( 'Administrator' ) ) {
        echo '<a href="">Dashboard</a>';
    } else {
        echo '<a href="/login">Login</a>';
    }
    ?>

    This is the start for if an admin logs in. What am I doing wrong?

    See my navigation at Scottreinmuth.com for a better understanding

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘If user logged in show (this) if author logged in show (this)’ is closed to new replies.