<?php
// Do NOT include the opening php tag
// This removes the primary navigation from its original place
add_action( 'get_header', 'ch_remove_primary_nav');
function ch_remove_primary_nav () {
remove_action( 'genesis_after_header', 'genesis_do_nav');
}
// This adds the primary navigation to a new place
add_action( 'genesis_before_header', 'genesis_do_nav');

