Reviews Menus
All menu locations for the reviews theme
// Register Navigation Menus function reviews_custom_menu() { $locations = array( 'Top Menu' => __( 'The menu at the top of the page', 'reviews' ), 'Main Page Menu' => __( 'Main navigation menu below header', 'reviews' ), 'Left Menu' => __( 'Left Sidebar menu', 'reviews' ), 'Right Menu' => __( 'Right Sidebar Menu', 'reviews' ), 'Footer Menu' => __( 'Footer Menu', 'reviews' ), ); register_nav_menus( $locations ); } // Hook into the 'init' action add_action( 'init', 'reviews_custom_menu' );