Dynamic menu links after header title
If your theme includes a header hook, you can simply hook in a new widget in that area and include the conditional tag for logged in users which only displays the custom menu widget with the links you want. <?php if ( is_user_logged_in() ) { wp_nav_menu( array( ‘theme_location’ => ‘logged-in-menu’ ) ); } else { … Read more