• Skip to main content
  • Skip to primary sidebar
  • Business
  • WordPress
  • Security
  • Marketing
  • Publicity
  • Computing
  • Resources
  • Whatevs

Purely Wordpress

Just The Tech, News, and Info We Deem To Post

  • Home
  • About
  • Contact
  • Contribute
You are here: Home / Code Snippets / Add Footer Menu To Genesis Themes

Add Footer Menu To Genesis Themes

Genesis Theme Framework Code Snippets

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' ) );

by Jack Alltrade on October 14, 2016

Filed Under: Code Snippets Tagged With: Footer Menu, Genesis Framework

Reader Interactions

Share Your Two Cents Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Categories

  • Code Snippets
  • Development
  • File Management
  • Genesis Framework
  • Hosting
  • Legacy
  • Plugins
  • SEO
  • Tech Terms
  • Themes
  • User Experience
  • User Interface
  • WordPress Core
  • WordPress Functionality

Warning! Use at your own risk!

As always, use at your own risk and remember to backup your site prior to inserting new code.

© Copyright Jack Alltrade & Associates 2025 · Purely Supplemental™ is a trademark of Jack Alltrade & Associates