• I’m replacing a static site with a WP site and having a couple of minor challenges in configuring navigation. It’s at http://www.bonnietarses.com/blog.

    I have pages set to display across the top and in the left sidebar. The top navigation allows me to display the “home page” which I’ve renamed Blog. I’d like to know if there’s some code I can add to a “page” that will allow that same link to be included in the Pages list in the sidebar? I want people who don’t see the top nav to be able to click in the sidebar nav and go to the most recent postings. I’m guessing there’s a simple/obvious way to achieve this.

    ALSO: I’ve numbered my pages and asked for them to sort by that number. The top ones do. But the sidebar one will NOT display Contact as the last item no matter what I do. What am I missing here?

    Thanks for your help to a newbie.

    Sheila

Viewing 1 replies (of 1 total)
  • I’d like to know if there’s some code I can add to a “page” that will allow that same link to be included in the Pages list in the sidebar?

    You’d need to add some code to your sidebar just before <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>:

    <div class="widget hardcoded homelink">
    <ul>
    <li><a href="<?php bloginfo('url'); ?>" title="Home"><?php bloginfo('name'); ?></a></li>
    </ul></div>

    I’ve numbered my pages and asked for them to sort by that number.

    Open the Pages widget in your sidebar in Admin/Appearance/Widgets and select “Page Order” from the Sort by: dropdown.

Viewing 1 replies (of 1 total)
  • The topic ‘Add post link in pages listing & page sort order’ is closed to new replies.