by Laura Hartwig
Having a navigation bar at the bottom of your site is very helpful for helping people navigate your site, but most Genesis themes don’t come with an option to add them in. Here’s how to do it.
Just add this in the theme functions.com:
/*------Footer Area-------*/ remove_action("genesis_after_header","genesis_do_subnav"); function footer_nav() { echo "<div class='footer_bg_wrap'> <div class='footer_first_line'> <div>"; genesis_do_subnav(); echo "</div><div>"; ?> </div></div> <?php } add_action("genesis_before_footer","footer_nav");
The first line puts the subnavigation that is usually in the header into the footer. Then you are adding the footer details. The last line adds the navigation to the footer.
Remember to check off the Inlude Secondary Navigation Menu in the Genesis Theme settings
PS- Thank you to Gina Nieves who showed me how to do this.