<?php
/**
 * Plugin Name: Taxonomy Test
 *
 * Description: Trying to figure out if hierarchical permastructs work in WP3.
 *
 * Plugin URI: http://www.miqrogroove.com/pro/software/
 * Author URI: http://www.miqrogroove.com/
 *
 * @author: Robert Chapin (miqrogroove)
 * @version: 0.0.00 alpha
 * @copyright Copyright © 2010 by Robert Chapin
 */

/* Plugin Bootup */

// $object_type = 'term' used to signify term_relationships.object_id is many-to-one with terms.term_id
register_taxonomy('testax1', 'term', array(
    'hierarchical' => TRUE,
    'label' => 'Groovy Places',
    'rewrite' => array('slug' => 'my-map'),
    'query_var' => FALSE
));

?>
