• Okay….so I want to create a page for a contact list (among others) for a small group of friends, but I don’t want the page to appear in the top menu bar. I want anyone to type in https://benparr.com/orpg and to access the page. I don’t want to make people have to log in or anything like that.

    What’s the easiest way to do this?

    Thanks,
    – Ben

Viewing 1 replies (of 1 total)
  • I assume your blog is at benparr.com?
    Create a page called orpg (make sure that permalinks are on so the link will be correct). Make a note of the page ID. You’ll need this in a second.

    In whatever theme you have running, look in the navigation (usually it’s in sidebar.php, but sometimes if the navigation is at the top, it can be in header.php).

    Find this:

    <ul>
    <?php
    wp_list_pages(); ?>
    </ul>

    And replace it with this:

    <ul>
    <?php
    wp_list_pages('exclude=X'); ?>
    </ul>

    Where “X” is the ID of the page you want to exclude (your contacts list).

    HTH.

Viewing 1 replies (of 1 total)
  • The topic ‘I want to make pages that anyone can access but don’t appear on the main menu’ is closed to new replies.