Life Hacks for Polymaths

Multidisciplinary | Cross-Disciplinary | Interdisciplinary | Transdisciplinary.

  • Facebook
  • Instagram
  • LinkedIn
  • Pinterest
  • YouTube

Welcome, Polymaths!

I’m Zigfred Diaz — polymath, independent scholar, &  lifelong learner integrating multidisciplinary, cross-disciplinary, interdisciplinary & transdisciplinary ideas through a broader theological meta-narrative that serves as my guiding interpretive framework. Feel free to explore.

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.


Zigfred Diaz

Hi! My name is Zigfred Diaz. Thanks for visiting my blog! Never miss a post. Subscribe to my full feeds for free by clicking here. For updates on new articles and a steady stream of thought-provoking ideas, research, book recommendations, practical insights, and other topics that fascinate a curious polymath, follow the official Facebook page: Life Hacks For Polymaths.

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.