Hello
I have a tweaked version of powerblog at www.sober.ws where I have done away with the title and the pages menu. I need to add a "Home" link before the category menu . Hope someone could help me out on this as always.
Hello
I have a tweaked version of powerblog at www.sober.ws where I have done away with the title and the pages menu. I need to add a "Home" link before the category menu . Hope someone could help me out on this as always.
You could add the following list item:
<li id="home" <?php if ( is_home() || is_front_page() ) { echo "class=current_page_item"; } ?>><a href="<?php bloginfo('url'); ?>">Home</a></li>
Artur Kim
You must log in to post.