pretty junior at this so i picked "minimalism" just to start out.
however, if someone is on an individual post or photo, there is no way to direct back to a "HOME" page.
can someone tell me how to remedy this?
thanks!!
pretty junior at this so i picked "minimalism" just to start out.
however, if someone is on an individual post or photo, there is no way to direct back to a "HOME" page.
can someone tell me how to remedy this?
thanks!!
The header links back to home.
thank you!
i wonder if there is a way to link a HOME [Page] to it???
i'm thinking of something my Mom would understand how to navigate...
yes, I have manually added it into my theme's header using the following code...
<div id="navbox">
<ul id="navbar">
<li><a href="<?php bloginfo('url'); ?>">Home</a></li> //this adds the home page link first
<?php
$arguments = array('depth' => '1', 'title_li' => '', 'link_after' => ' ');
wp_list_pages($arguments);
?> //this php gets the page links and renders each once between <li></li> tags.
</ul>
</div>
hop this helps
You must log in to post.