mattlawck
6/3/2013 - 6:43 PM

Genesis primary/secondary navigation.

Genesis primary/secondary navigation.

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

//* Unregister primary/secondary navigation menus
remove_theme_support( 'genesis-menus' );
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Unregister secondary navigation menu
add_theme_support( 'genesis-menus', array( 'primary' => __( 'Primary Navigation Menu', 'genesis' ) ) );
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Unregister primary navigation menu
add_theme_support( 'genesis-menus', array( 'secondary' => __( 'Secondary Navigation Menu', 'genesis' ) ) );
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Reposition the secondary navigation menu
remove_action( 'genesis_after_header', 'genesis_do_subnav' );
add_action( 'genesis_before_header', 'genesis_do_subnav' );
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

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