• I have searched around, but i cant find a definite answer.. How do I make links to external websites in the top menu (not the sidebars)? I want to link to my Picasa gallery etc, but the only way I have fount to do this is to make a Page and put the html redirect code in the page. Cant one just make a link that becomes a menu item, like pages do?

    thesutex

Viewing 5 replies - 1 through 5 (of 5 total)
  • i was also looking for something similar. i dont know how useful it is to reply to a question with the same question after going un answered for 7 months but this was the only thing that came up when i searched. ill try to explain what i am looking for:

    im looking to make an item in the ‘Pages’ sidebar section that acts like an item in the ‘Blogroll’ or ‘Links’ section it would be like in the navigation area where you would have an About Page, instead of going to an internal page, it would link to an external site.

    I usually do this by manually hardcoding a <li> before the call to wp_list_pages() or after it, but still inside the encapsulating <ul> ... </ul>

    For example:

    <ul>
    <li><a href="/index.php">Home</a></li>
    <?php wp_list_pages(blah..blah); ?>
    </ul>

    or

    <ul>
    <?php wp_list_pages(blah..blah); ?>
    <li>Click <a href="http://external.com">here</a> for external page.</li>
    </ul>

    Not sure if this is what you were asking..

    that looks promising ill check it out. what theme section do i find that part to edit it on?

    Michael Torbert

    (@hallsofmontezuma)

    WordPress Virtuoso

    More than likely it’s in wp/wp-content/themes/whicheverthemeyouareusing/header.php

    brilliant. exactly what i was looking for thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Navigation links below header’ is closed to new replies.