• Hey everyone,

    When I go to Dashboard->Appearance->Menus… I’ve got a few different menus I’ve made…

    But then when I go to Dashboard->Pages->Add New… There’s nothing to let me put any of those menus I made on the new page…

    It may be the template, but I like the template I am using, so I’d rather not change it…

    Is there some way… like a widget or shortcode… or even cutting and pasting the PHP… to get my menus to appear on my pages?

    Thanks and Merry Christmas and Happy Holidays to everyone out there!
    ??

    wilbert

Viewing 1 replies (of 1 total)
  • Do you want to add your menu by going to Dashboard -> Pages -> Add New? This is not supported I believe.

    A menu is assigned to specific location in Dashboard -> Appearance -> Menus as per your theme support or you could call it via the following code in your template:

    $menu = array(
    		'theme_location'  => 'main_menu', // change this to whatever your theme support
    		'menu'            => 'Your Menu Name',
    		'container_class' => 'menu' //change this to the css class you are using
    	);
    
    	wp_nav_menu( $menu );
Viewing 1 replies (of 1 total)
  • The topic ‘How to get menus on pages?’ is closed to new replies.