Lego2012
12/14/2016 - 2:31 PM

Navigation Menus

Navigation Menus

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

<!-- Below is the code to reposition the primary navigation menu: -->

//* Reposition the primary navigation menu
remove_action( 'genesis_after_header', 'genesis_do_nav' );
add_action( 'genesis_before_header', 'genesis_do_nav' );

<!-- Below is the code to reposition the secondary navigation menu: -->

//* Reposition the secondary navigation menu
remove_action( 'genesis_after_header', 'genesis_do_subnav' );
add_action( 'genesis_before_header', 'genesis_do_subnav' );

<!-- Below is the code to unregister the primary/secondary navigation menus: -->

//* Unregister primary/secondary navigation menus
remove_theme_support( 'genesis-menus' );

<!-- Below is the code to unregister the primary navigation menu: -->

//* Unregister primary navigation menu
add_theme_support( 'genesis-menus', array( 'secondary' => __( 'Secondary Navigation Menu', 'genesis' ) ) );

<!-- Below is the code to unregister the secondary navigation menu: -->

//* Unregister secondary navigation menu
add_theme_support( 'genesis-menus', array( 'primary' => __( 'Primary Navigation Menu', 'genesis' ) ) );