Add the following code to you theme’s function.php file, or a functionality plugin to add Footer Menu To Genesis Themes.
//* Customize the entire footer and add footer menu
remove_action( 'genesis_footer', 'genesis_do_footer' );
add_action('genesis_before_footer', 'themprefix_footer_menu');
function themprefix_footer_menu () {
echo '<div class="footer-menu-container">';
$args = array(
'theme_location' => 'tertiary',
'container' => 'nav',
'container_class' => 'wrap',
'menu_class' => 'menu genesis-nav-menu menu-footer footer-menu-container',
'depth' => 1,
);
wp_nav_menu( $args );
echo '</div>';
}
add_theme_support ( 'genesis-menus' , array ( 'primary' => 'Primary Navigation Menu' , 'secondary' => 'Secondary Navigation Menu' ,'tertiary' => 'Footer Navigation Menu' ) );
Share Your Two Cents