• I’m trying to add a new tab to the top of my PressRow theme. I’ve created and uploaded a new page template for the page I want to add, and the new template shows up in WordPress but when I choose that template the page I’m assigning it to doesn’t show up in my top bar nav. I’m sure I’ve skipped a step somewhere, but I don’t know what that step is. Is there some extra code I need to add to the page template for it to show up in my top bar nav? Here is the code I’m using:

    <?php
    /*
    Template Name: CreateAndSubmit
    */
    ?>

    <?php include(‘header_about.php’); ?>

    <div id=”content_box”>

    <div id=”content”>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=”post”id=”post <?php

    the_ID(); ?>”>
    <h2 style=”padding-top: 0;”><?php

    the_title(); ?></h2>
    <div class=”entry”>
    <?php the_content(‘<p

    class=”serif”>Read the rest of this page »</p>’); ?>

    <?php

    link_pages(‘<p>Pages: ‘, ‘</p>’, ‘number’); ?>
    </div>
    </div>
    <?php endwhile; endif; ?>

    </div>

    <?php get_sidebar(); ?>

    </div>

    <?php get_footer(); ?>

    PS – If you’ve answered this question a million times before, I apologize.

  • The topic ‘adding tabs in Pressrow’ is closed to new replies.