Forums

Creating a home page tab... (3 posts)

  1. bassjamm
    Member
    Posted 3 years ago #

    Hi everyone,

    I've just set up my blog at http://www.learnbassguitartoday.com/blog and i'm using the Your Existence 1.0 theme.

    I want a creat a tab in my navigation bar that brings the user back to the home page, which i want to be as it is now, with the most recent posts etc. So essentially, i just want to link back to it. I can't seem to do that though without either needing to create a static front page or just making do with my blog title linking back to the home page.

    Can anyone please point me in the right direction?

    So essentially, i want http://www.learnbassguitartoday.com/blog to be my home, where all the latest posts are, not a static front page at present.

    Thanks in advance.

    Jamie

  2. t31os
    Member
    Posted 3 years ago #

    In your header.php, look for ...

    <div id="naviation"

    This DIV holds your nav bar, once you find that you should see something not far below that looks similiar to this...

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

    Change it to....

    <ul>
    <li><a href="<?php echo get_option('home'); ?>/">Home</a></li>
    <?php wp_list_pages(); ?>
    </ul>

    That's a very basic example, but it should point you in the right direction.

  3. bassjamm
    Member
    Posted 3 years ago #

    That's spot on thank you...it's now got the home page link!!!

    Thank you very much!!!

Topic Closed

This topic has been closed to new replies.

About this Topic