• I would like to add a link to my forum that is not a part of wordpress.
    I am using the default theme and would like my link to the forum to appear on the sidebar menu with the rest of the page links.
    How could I do this?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Find this in your sidebar.php:

    <ul role="navigation">
      <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
    
      <li><h2>Archives</h2>

    and change into this:

    <ul role="navigation">
      <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
      <li><a href="linktoyourforum">Forum</a></li>
      <li><h2>Archives</h2>

    Peter

    Thread Starter millsy

    (@millsy)

    Thanks, but this doesnt add them to the same list, they are on a different line without the arrow list prefix

    Never tried it, I must admit, it was just a guess. I’m going to try on a test site…

    Peter

    Thread Starter millsy

    (@millsy)

    I have experimented with putting the items in various places, does anyone have any idea of how I could achieve this?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Adding Static / Non-WordPress link to Menu’ is closed to new replies.