Skip to content

Instantly share code, notes, and snippets.

@jdtdesigns
Created November 30, 2015 00:12
Show Gist options
  • Save jdtdesigns/ec795ea4c86e72d0e82a to your computer and use it in GitHub Desktop.
Save jdtdesigns/ec795ea4c86e72d0e82a to your computer and use it in GitHub Desktop.
WordPress Menu
function register_espace_menus() {
register_nav_menus(
array(
'primary-navigation' => __( 'Primary Navigation' ),
)
);
}
add_action( 'init', 'register_espace_menus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment