WordPress Custom Taxonomy Example: $_tType = ‘Taxonomy Type’; $_tSlug = ‘wp-taxonomy-type’; $_tId = str_replace(‘ ‘, ‘_’, strtolower($_tType)); register_taxonomy($_tId, ‘post’, array( ‘hierarchical’ => true, ‘labels’ => array( ‘name’ => _x( $_tType, ‘taxonomy general name’ ), ‘singular_name’ => _x( $_tType, ‘taxonomy singular name’ ), ‘search_items’ => __( ‘Search ‘.$_tType ), ‘all_items’ => __( ‘All ‘.$_tType ), ‘parent_item’ […]