<?php
/*
Plugin Name: Test Hierarchical Taxonomy
Plugin URI: http://voceconnect.com/
Description: A simple plugin to test the hierarchical taxonomy handling within the edit post page
Author: Michael Pretty
Version: 1.0
Author URI: http://voceconnect.com/
*/


define('SCRIPT_DEBUG', true);
define('STYLE_DEBUG', true);

function register_test_taxonomy()
{
	register_taxonomy('test-taxonomy', array('post'), array('hierarchical' => true, 'label' => 'Test Hierarchical Taxonomy'));
}
add_action('plugins_loaded', 'register_test_taxonomy');