Creating Custom Taxonomy without mapping to any post type
It is possible to register a taxonomy without associating a post type by passing null as your argument for the $object_type. Unfortunately, this means that you will still need to associate an object type (post type) to your taxonomy later in order to use it. register_taxonomy( ‘aprwc_rating_criteria’, null, $args ); From the documentation: Setting explicitly … Read more