<?php
/**
 * Plugin Name: Demo Theme Locations
 * Version: 0.1
 */

if ( function_exists( 'register_nav_menus' ) ) {
	register_nav_menus( array(
		'test-menu-1' => 'Location 1',
		'test-menu-2' => 'Location 2',
		'test-menu-3' => 'Location 3'
	) );
}
