Site logo

Archived topic

main navigation menu after the pageheader, but only on the home page

1 reply · Started by Teresa on December 16, 2017

Viewing posts 1–2 of 2

Hello
I would like to put the main navigation menu after the pageheader, but only on the home page.
Is it possible to do this?
Thank you very much

Hi there,

Give this snippet a shot:

add_action('wp','generate_change_nav_position');
function generate_change_nav_position()
{
    if ( is_front_page() ) {
        remove_action( 'generate_after_header', 'generate_add_navigation_after_header', 5 );
        add_action( 'generate_after_header', 'generate_add_navigation_after_header', 29 );
    }
}

Adding PHP: https://docs.generatepress.com/article/adding-php/

This archived topic is closed to new replies.