Sorry, I know there must be an easy answer, but I have been unable to figure out how to add links to the top navigation (the blue bar). Any help would be much appreciated.
ThemeShaper Forums » Thematic
adding links to top navigation
(7 posts)-
Posted 3 years ago #
-
When you create a new page a link to it will appear automatically.
Posted 3 years ago # -
what if you want a 'Home' button in the top nav? Or you want to add a 'Blog' link that points to all of your blog posts?
Posted 3 years ago # -
Posted 3 years ago #
-
The linked article seems to be out of date. I can't find info on adding a home button. Any help?
Posted 2 years ago # -
Try this one in your child theme's functions.php:
function childtheme_menu_args($args) { $args = array( 'show_home' => 'Home', 'sort_column' => 'menu_order', 'menu_class' => 'menu', 'echo' => true ); return $args; } add_filter('wp_page_menu_args','childtheme_menu_args');Chris
Posted 2 years ago # -
Great, thanks!
Posted 2 years ago #
Reply
You must log in to post.