Navigation Menus

Below is the code snippet that you can use to reposition the primary navigation on your site:

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

Below is the code that you can use to reposition the secondary navigation on your site:

/** Reposition the secondary navigation */
remove_action( 'genesis_after_header', 'genesis_do_subnav' );
add_action( 'genesis_before_header', 'genesis_do_subnav' );
/** Modify the Home link text */
add_filter('genesis_nav_home_text', 'child_nav_home_text', 10, 2);
function child_nav_home_text($text, $args) {
    $text = 'Homepage';
    return $text;
}