Portfolio Tags Tax
Example for testing
// Register Custom Taxonomy function ddw_cpt_portfolio_tag_taxonomy() { $labels = array( 'name' => _x( 'Portfolio Tags', 'Taxonomy General Name', 'portfolio-content' ), 'singular_name' => _x( 'Portfolio Tag', 'Taxonomy Singular Name', 'portfolio-content' ), 'menu_name' => __( 'Portfolio Tags', 'portfolio-content' ), 'all_items' => __( 'All Tags', 'portfolio-content' ), 'parent_item' => __( 'Parent Tag', 'portfolio-content' ), 'parent_item_colon' => __( 'Parent Tag:', 'portfolio-content' ), 'new_item_name' => __( 'New Tag Name', 'portfolio-content' ), 'add_new_item' => __( 'Add New Tag', 'portfolio-content' ), 'edit_item' => __( 'Edit Tag', 'portfolio-content' ), 'update_item' => __( 'Update Tag', 'portfolio-content' ), 'view_item' => __( 'View Tag', 'portfolio-content' ), 'separate_items_with_commas' => __( 'Separate Tags with commas', 'portfolio-content' ), 'add_or_remove_items' => __( 'Add or remove Tags', 'portfolio-content' ), 'choose_from_most_used' => __( 'Choose from the most used', 'portfolio-content' ), 'popular_items' => __( 'Popular Tags', 'portfolio-content' ), 'search_items' => __( 'Search Tags', 'portfolio-content' ), 'not_found' => __( 'Not Found', 'portfolio-content' ), 'no_terms' => __( 'No Tags', 'portfolio-content' ), 'items_list' => __( 'Tags list', 'portfolio-content' ), 'items_list_navigation' => __( 'Tags list navigation', 'portfolio-content' ), ); $args = array( 'labels' => $labels, 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => true, 'show_tagcloud' => true, 'show_in_rest' => true, ); register_taxonomy( 'portfolio-tag', array( 'portfolio-content' ), $args ); } add_action( 'init', 'ddw_cpt_portfolio_tag_taxonomy', 0 );