• Resolved mizzmuzikluvr

    (@mizzmuzikluvr)


    Hello all. I dont know anything about anything when it comes to this stuff. But I am an artist and I am OBSESSED with aethetics. Alright, so I recently added “Pool” to mt themes list. And at the top it has two tabs. One says “blog” and the other has my page on it.

    First I would like to change the title of “blog” and second I would like to ADD links there. Like to my gallery. I’ve searched the editable regions in the WP admin cntr, and I haven’t found where this stuff is stored, can someone give me a clue?

    And here is the Site
    http://leavesofivy.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • That section of code is found in your theme’s header.php file.

    this is the sextion you need to edit:


    <div id="pages">
    <div class="alignleft">
    <ul>
    <li><a href="<?php echo get_settings('home'); ?>">Blog</a></li>
    <?php wp_list_pages('title_li='); ?>
    </ul>
    </div>

    You will notice the one page you have made is already displayed, any new Pages you make will also be automaticlly displayed.

    Note this part, that is what will auto add new Pages: <?php wp_list_pages('title_li='); ?>

    First backup your header.php code then edit this how you need it.

    Remove this code (<?php wp_list_pages('title_li='); ?>) and add what you would like.

    ie: <li>My buddies</li>
    <li>Portfolio</li>
    <li>Taking out the trash</li>

    etc, etc.

    See if that works, REMEMBER backup your header.php file so if you have problems you can revert to the original.

    Thread Starter mizzmuzikluvr

    (@mizzmuzikluvr)

    I heart you. Thankyou.

    Thread Starter mizzmuzikluvr

    (@mizzmuzikluvr)

    It worked! Thanx!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Theme : pool = I want to change the top links!’ is closed to new replies.