Thread Starter
Seodev
(@seodev)
Solved it. You need to make a menu for this to work, to activate the menu system in functions.php:
// Add Your Menu Locations
function register_my_menus() {
register_nav_menus(
array(
‘header_navigation’ => __( ‘Header Navigation’ ),
‘expanded_footer’ => __( ‘Expanded Footer’ )
)
);
}
add_action( ‘init’, ‘register_my_menus’ );
Hi Seodev,
I was going to say this isn’t meant to show posts, but to deal with your sites menus.
As such the way you have done it is correct.
Many thanks
Peter