• Hi everyone,

    I’ve just set up my blog at https://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 https://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

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.

    Thread Starter bassjamm

    (@bassjamm)

    That’s spot on thank you…it’s now got the home page link!!!

    Thank you very much!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Creating a home page tab…’ is closed to new replies.