Taxonomy: Topics
An attempt to make a hierarchical replacement for Tags
if ( ! function_exists( 'cpt_topics' ) ) { // Register Custom Taxonomy function cpt_topics() { $labels = array( 'name' => _x( 'Topics', 'Taxonomy General Name', 'text_domain' ), 'singular_name' => _x( 'Topic', 'Taxonomy Singular Name', 'text_domain' ), 'menu_name' => __( 'Topics', 'text_domain' ), 'all_items' => __( 'All Topics', 'text_domain' ), 'parent_item' => __( 'Parent Topic', 'text_domain' ), 'parent_item_colon' => __( 'Parent Topic:', 'text_domain' ), 'new_item_name' => __( 'New Topic', 'text_domain' ), 'add_new_item' => __( 'Add New Topic', 'text_domain' ), 'edit_item' => __( 'Edit Topic', 'text_domain' ), 'update_item' => __( 'Update Topic', 'text_domain' ), 'view_item' => __( 'View Topic', 'text_domain' ), 'separate_items_with_commas' => __( 'Separate topics with commas', 'text_domain' ), 'add_or_remove_items' => __( 'Add or remove topics', 'text_domain' ), 'choose_from_most_used' => __( 'Choose from the most used topics', 'text_domain' ), 'popular_items' => __( 'Popular topics', 'text_domain' ), 'search_items' => __( 'Search Topics', 'text_domain' ), 'not_found' => __( 'Not Found', 'text_domain' ), 'no_terms' => __( 'No topics', 'text_domain' ), 'items_list' => __( 'Topics list', 'text_domain' ), 'items_list_navigation' => __( 'Topics list navigation', 'text_domain' ), ); $rewrite = array( 'slug' => 'post_tag', 'with_front' => true, 'hierarchical' => true, ); $args = array( 'labels' => $labels, 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => true, 'show_tagcloud' => true, 'query_var' => 'post_tag', 'rewrite' => $rewrite, 'show_in_rest' => true, ); register_taxonomy( 'topics', array( 'post' ), $args ); } add_action( 'init', 'cpt_topics', 0 ); }