Websites for sale:
Web Hosting Reviews and Rating, Used Cars for Sale and Car Sale.
If interested please send my an email at ken@kensfi.com. Thanks!

How to add home link on bar menu

This wasn’t the first theme of Kensfi. I’ve been tried three themes before. One of them came with a big problem, didn’t has a home link and the users couldn’t rich the blog home page. You can fix this issue opening the header page of your blog (try notepad if you don’t have any html editor but notepad) and take a look in the html code.

<div id="header">
    <div class="TopMenu">
      <ul>
      <li class="page_item page-item-71"><a href="http://www.kensfi.com/about-kensfi/" title="About Kensfi">About Kensfi</a></li>
      <?php wp_list_pages('depth=1&sort_column=menu_order&title_li=' . __('') . '' ); ?>
      </ul>
    </div>
</div>

Instead of getting home page you’ll get contact page or another links (in my case, About Kensfi page link). After you recognize in page html, that section which contains menu links, try to add home page link, in this manner:

<div id="header">
    <div class="TopMenu">
      <ul>
      <li class="page_item page-item-71"><a href="http://www.kensfi.com/" title="Home">Home</a></li>
      <li class="page_item page-item-71"><a href="http://www.kensfi.com/about-kensfi/" title="About Kensfi">About Kensfi</a></li>
      <?php wp_list_pages('depth=1&sort_column=menu_order&title_li=' . __('') . '' ); ?>
      </ul>
    </div>
</div>

After adding the desired link you need to take care of changing it to the right class.

Popularity: 10% [?]

If you enjoyed this post, make sure you subscribe to my RSS feed!

Post to Twitter Post to Digg Post to Facebook

Related Posts

How to

If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.

ss_blog_claim=a60fe0ab4bb2f93087f423c86b8d54f3

Leave Comment

(required)

(required)