template code: <?php wp_nav_menu( array( 'theme_location' => 'grants-menu' ) ); ?>
functions.php (register the location): function register_homepage_grants() {
register_nav_menu('homepage_grants',__( 'Homepage Grants' ));
}
add_action( 'init', 'register_homepage_grants' );
/* Set up menu in dashboard and assign to location. */