• Resolved chamaree

    (@chamaree)


    Anyone know how to add a “Home” link on the sidebar? So when you are in a different page, it is easier to go to the main page.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The following will give you link to home

    <a href="<?php echo get_settings('home'); ?>">Home</a>

    Thread Starter chamaree

    (@chamaree)

    Great!!! it works. Thanks so much!

    Another way that Minna explained how to do this, and the way I have mine working is:


    <ul>
    <li><h2>MENU</h2>
    <a href="<?php bloginfo('url'); ?>">Home</a>
    <?php wp_list_pages ('sort_column=menu_order&title_li='); ?>
    </li>

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Page for “Home” in sidebar’ is closed to new replies.