It is set up in a child theme of a Woo Themes Parent Theme.
It is set up in the child theme’s function.php file. I have also tried setting it up in the parent theme’s functions file, but to no avail.
I am declaring it as follows within the same function where I am registering a custom post type to which it belongs:
$labels = array(
‘name’ => ‘My Custom Taxonomy’,
etc
);
$args = array(
‘hierarchical’ => true,
‘labels’ => $labels,
‘show_ui’ => true,
‘query_var’ => true,
‘rewrite’ => array( ‘slug’ => ‘mycustomtaxonomy’)
);
register_taxonomy( ‘mycustomtaxonomy’, array( ‘mycustomposttype’ ), $args );
and using the action hook ‘init’.