// Add this on function.php
add_theme_support( ‘menus’ );
register_nav_menus( array( ‘menu_name’ => __( ‘Menu Description’) ) );
//add this on your theme. example is header.php
wp_nav_menu( array( ‘theme_location’ => ‘menu_name’ ) );
Advertisement