Life Hacks for Polymaths

Wisdom, Knowledge, Adventure, hacks for polymaths ... Life

  • Facebook
  • Instagram
  • LinkedIn
  • Pinterest
  • YouTube

Welcome polymaths !

Ever get the feeling that you seem to don't know what to do with your life because there are just so many things that you want to do ? I know, I've been there, so welcome to the club.

My name is Zigfred Diaz and I am a polymath. After more than 6 years of bloging about almost anything under the sun and having sort of a "blogging identity crisis." I've finally embraced who I am and decided to turn my main blog into some sort of guide for people with so much interest. Feel free to poke around.

Powered by Genesis

  • Home
  • About
  • Privacy Policy
  • Archives
  • Categories
    • Book reviews
    • Life Hack for Polymaths
      • Featured Polymaths
      • Life-work Balance
      • Productivity
      • Miscellaneous Ramblings
      • My Life long learnings experiences
    • Business, Entrepreneurship & Leadership
    • Events
    • Financial management & investments
    • Fraud alert
    • Health
    • Hot trends
    • Law, Law Practice, Law Education
    • Making money online, Blogging, SEO
    • Music
    • Politics, Social issues & Current events
    • Reviews
    • Sports
    • Technology
      • Word Press tips
    • Theology, Faith & inspirational
    • Travel and Living
    • Cognitive Archeology
    • Social Work
    • Theology
    • Uncategorized
  • Contact

How to add a “Home” button to the “BLOGGER PRO” theme, the “PRO” way.

January 3, 2008 by Zigfred Diaz Leave a Comment

In my November 25, 2007 post, I mentioned how to put a home button in your word press theme. I discovered that my theme “BLOGGER PRO” did not have a “home” button. I have discovered a “work around” the problem. It may not be the perfect solution but it worked. I posted that article so that it might help others who wish to put a home button in the BLOGGER PRO theme or any other theme.

I tried to contact the author of the BLOGGER PRO theme about the problem through her blog. But I did not get a response immediately; hence I was forced to do a little research and discovered the work around. The good thing about it is that I was forced to study HTML. After several weeks the author of the theme, Elena Gafita sent me an email and gave me the code on how to put a home button to the BLOGGER PRO theme. This is the instruction and the code that she gave me:

Replace this into header. <div class=”TopMenu”>
<ul>
<li><a href=”/” mce_href=”/”>Home</a> </li>
<?php wp_list_pages(” ); ?>
</ul>
</div>I followed her instruction and placed the code in my header. (This can be achieved by going to your Word Press administration panel > Presentation > Theme Editor > Header)
what-my-page-looks-like-after-applying-changes.JPG
The code worked. But unfortunately the “Home button” was placed above the “About” button. I am no HTML expert. But I was very determined to make it work. I studied the codes, the existing one and the new one she gave me. I found that they are somewhat similar except for two lines. I experimented with the code and finally I got it to work. So here is the code I am using now:<div class=”TopMenu”>
<ul>
<li><a href=”/” mce_href=”/”>Home</a> </li>
<?php wp_list_pages(‘depth=1&sort_column=menu_order&title_li=’ . __(”) . ” ); ?>
</ul>
</div>

This “REAL SOLUTION” is better than the work around I previously posted, since this solves the delay problem I was talking about. So I suggest you implement this solution rather than the work around I first posted. I hope this post will hope those using the BLOGGER PRO theme. Thanks to the author of this theme for taking the time to help me out.

UPDATE (4/1/2008) : Recently, I did a blog overhaul and the code I have posted above does not seem to work anymore. If you have tried the code above and it does not work for you try this new code:


<div class=”TopMenu”>
<ul>
<li><a href=”https://www.zdiaz.com”>Home</a></li>
<?php wp_list_pages(‘depth=1&sort_column=menu_order&title_li=’ . __(”) . ” ); ?>
</ul>
</div>
Post your comment if you you still can’t make it work. Perhaps I can render some assistance.


zmd Hi ! my name is Zigfred Diaz. Thanks for visiting my personal blog ! Never miss a post from this blog. Subscribe to my full feeds for free. Click here to subscribe to zdiaz.com by Email

You may also want to visit my other blogs. Click here to learn more about great travel ideas.


Like what you just read ? Check these out !

  • WordPress 2.6 now available!
  • Problems with Kontera ? – Try the Kontera integration word press plugin.
  • How to put ads in between your blog post in Word press
  • Why don’t you give love links on Valentine’s day
  • How to add a giant RSS button in your header

Related

Filed Under: Word Press tips Tagged With: Bloggerpro theme, How to add a Home button in your word press theme, wordpress tips

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.