• Hi,
    Newbee PHP guy.
    Im wanting to display an item in a list thats a link only if the user is of a certain role.
    Example needed.
    Basically trying to make access to certain locations only if the user is a certain role.
    Thanks
    Mike
    teamrv.us

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter rvsuper8

    (@rvsuper8)

    Hello?

    <ul>
    <?php // add a private menu
    if(current_user_can('read_private_pages')) : ?>
        <li><a href="<?php echo get_permalink(10); ?>">For Authors only</a></li>
    <?php endif; ?>
    </ul>

    This code is taken from wptricks.net

    It should also work with the user’s role name instead of ‘read_private_pages’.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to display a link for only certain roll’ is closed to new replies.