Hi, I have started a new blog about "Dog Help". I am trying to Include a link to my home page at the top next to "About" page. will anybody help how to include the home link at the top of the page. I am doing this because if a visitor visits an individual post of my blog, he ought to delete the rest of the URL to view my home page. Please help me...
I'm not sure what program you are using to manipulate the HTML code but... the code you are looking to add would be similar to:
Within one of my blogs in a section called Menu i used this: <ul> <li<?php if ( is_page('home') ) { echo ' class="current"'; } ?>><a href="http://www.sitename.com/">Home</a></li> <li<?php if ( is_page('about') ) { echo ' class="current"'; } ?>><a href="http://www.sitename.com/about/">About</a></li> <li<?php if ( is_page('contact') ) { echo ' class="current"'; } ?>><a href="http://www.sitename.com/contact-us/">Contact Us</a></li> <li<?php if ( is_page('privacypolicy') ) { echo ' class="current"'; } ?>><a href="http://www.sitename.com/privacy-policy/">Privacy Policy</a></li> </ul> Maybe something like that could go into your Nav section.