Viewing 5 replies - 1 through 5 (of 5 total)
  • Eh? In the admin section go to Links>Link Categories and >Add a New Category.

    Is that what you’re after?

    Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    To create a general menu (coded into the sidebar area of index.php):
    <li><h2><?php _e('Menu Title'); ?></h2>
    <ul>
    <li><a href="http://www.domain.com">Domain</a></li>
    <li><a href="http://www.domain2.com">Domain 2</a></li>
    </ul>
    </li>

    Or, get the Link Manager to output each category on it’s own. You can then set the order in the sidebar.

    <li id="friends">Friends
    <ul><?php wp_get_links(2); ?></ul>
    </li>

    <li id="reading">Reading
    <ul><?php wp_get_links(15); ?></ul>
    </li>

    Where the (number) is the Link Cat ID

    Thread Starter ptfigg

    (@ptfigg)

    Eh, no…general menu is what I am looking for.

    Eh.

    Thread Starter ptfigg

    (@ptfigg)

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Archives, Catagories, Links..I cant figure how to create a new heading…’ is closed to new replies.