Adding a “Home” link to the simplr theme header.
- August 26th, 2009
- Posted in Random Stuff
- Write comment
if ( is_front_page() ) { echo '<a href="http://yourblog.com">Home</a>'; };
Add this block to functions.php so that it looks like this:
<li class="page_item_home home-link"><a title="<?php echo wp_specialchars(get_bloginfo('name'), 1) ?>" rel="home" href="<?php bloginfo('home'); ?>/"></a></li> Home'; }; echo str_replace(array("\r", "\n", "\t"), '', $menu); echo " \n"; }
No comments yet.