• I’ve looked through the page related posts and couldn’t find my problem so I decided to strat a new one. I’m new to word press and learning as I go so please forgive my dumb questions or incorrect lingo.

    So I started up Word Press and found a nice theme that I liked only to realize that it didn’t work correctly in all browsers. So I changed the themes, but with this new theme (red_is_nice) it has pages/buttons just under the header that I can’t edit or even find in any of the management screens I look in. Now I can’t even add new pages/buttons. What ever new pages I make just doesn’t show up.

    What am I doing wrong?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The horizontal menus in headers generally are done dynamically using a template tag, wp_list_pages, and CSS.

    As you write a new Page (not post),they are added. If you want to add links that are not Pages, you would add in the header (assuming the header is doing dynamic Page listing)
    <ul>
    <li><a href="<?php bloginfo('siteurl'); ?>">Home</a></li>
    <?php wp_list_pages('title_li=') ;?>
    <li><a href="http:yourlinkhere.com">External Link</a></li>
    </ul>

    where yourlinkhere.com is the URL for the external link, and Link is the name of the link.

    If I’m misunderstanding, or your theme is different, let us know.

    Thread Starter hondo

    (@hondo)

    Yes that worked great! Thank you very much ^_^

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Page management issues.’ is closed to new replies.