• Resolved Harvey

    (@harvey)


    Hello everyone.

    I am using the Pool theme on my blog.
    http://www.japannewbie.com

    The Pool theme creates a “tab” for every page which is created.

    I like this, but I would now like to create a page, that does -not- have an associated tab.

    Essentially, I want to create a page without a tab link generated for it. I will create the link to the page myself in another location.

    Is this possible? I imagine I will have to tweak something in index.htm, but I’m not sure where to start.

    Thanks for any help!

Viewing 1 replies (of 1 total)
  • The code for listing pages is
    <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
    or something like that.
    For hiding your page, find the code in your theme folder (maybe header.php) and change it to
    <?php wp_list_pages('title_li=<h2>Pages</h2>&exclude=YOUR PAGE ID' ); ?>

Viewing 1 replies (of 1 total)

The topic ‘Pool Theme – Hiding Page Tabs’ is closed to new replies.