Reply To: Move Navigation to the bottom of the Header

Home Forums Support Move Navigation to the bottom of the Header Reply To: Move Navigation to the bottom of the Header

Home Forums Support Move Navigation to the bottom of the Header Reply To: Move Navigation to the bottom of the Header

#237705
Tom
Lead Developer
Lead Developer

My idea is kind of flawed because it would involve moving the navigation into the page header element, but what about pages without the page header?

You could try something like this, but not sure if it will work:

add_action( 'wp','tu_move_nav_inside_page_header' );
function tu_move_nav_inside_page_header() {
    if ( ! function_exists( 'generate_page_header_get_options' ) ) {
        return;
    }

    $options = generate_page_header_get_options();

    if ( '' !== $options['content'] ) {
	remove_action( 'generate_after_header_content', 'generate_add_navigation_float_right', 5 );
	add_action( 'generate_after_page_header', 'generate_add_navigation_float_right', 5 );
    }
}