I am really, REALLY new at this and I need help. If anyone has a moment to check out my site .... here's the question:
I need a way to get back to the start page once you have clicked around. The only tab that shows is "ABOUT." I don't know, maybe I am looking to add a "HOME" tab? My categories are all there at the moment but once you click them there is no way to get back to the first page.
Also, I don't want the bookmarks on the side bar so I need to find out what code to remove to get them out of there.
If you have a minute the site is optforhealth.com
Thanks
I need a way to get back to the start page once you have clicked around. The only tab that shows is "ABOUT." I don't know, maybe I am looking to add a "HOME" tab?
1.Could add a page that is called Home that redirects to your domain. You'd need to use something like the http://wordpress.org/extend/plugins/page-links-to/ plugin.
2.Could use the show_home=1 argument with template tag, wp_page_menu(), in your theme's header.php
3.Could make your header clickable...see Designing Headers
4.Could put a link such as <a href="http://yourdomain.com">Home</a> in your theme's header.php
Also, I don't want the bookmarks on the side bar so I need to find out what code to remove to get them out of there.
If using widgets delete the Links Widget, if not delete the template tag, wp_list_bookmarks(), from your theme's sidebar template (probably sidebar.php)
Other resources:
WordPress Semantics
Stepping Into Template Tags
Stepping Into Templates
Template Hierarchy
Thanks...gives me somewhere to research....but unfortunately still mostly Greek to me.... you don't know how many functions.php I've messed up and had to re-upload. It's the code, I guess I am stuck back in the dark ages of html.... But thanks, at least I know where to find the help topics I need now :)