Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Created November 10, 2015 03:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reasonstousegenesis/f86cc9bb05bdfbfb732b to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/f86cc9bb05bdfbfb732b to your computer and use it in GitHub Desktop.
Register menu locations with Genesis
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* Register menu locations with Genesis
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/genesis-menus/
*/
add_theme_support( 'genesis-menus', array(
'primary' => __( 'Primary Navigation Menu', 'genesis' ),
'secondary' => __( 'Secondary Navigation Menu', 'genesis' ),
'after-entry' => __( 'After Entry Navigation Menu', 'genesis' ),
'footer' => __( 'Footer Navigation Menu', 'genesis' )
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment