map_ct_Author
My Awesome Plugin Custom Taxonomy Author
// Register Custom Taxonomy function map_register_ct_Author() { $labels = array( 'name' => _x( 'Authors', 'Taxonomy General Name', 'map' ), 'singular_name' => _x( 'Author', 'Taxonomy Singular Name', 'map' ), 'menu_name' => __( 'Author', 'map' ), 'all_items' => __( 'All Authors', 'map' ), 'parent_item' => __( 'Parent Item', 'map' ), 'parent_item_colon' => __( 'Parent Item:', 'map' ), 'new_item_name' => __( 'Author Name', 'map' ), 'add_new_item' => __( 'Add New Author', 'map' ), 'edit_item' => __( 'Edit Author', 'map' ), 'update_item' => __( 'Update Author', 'map' ), 'view_item' => __( 'View Author', 'map' ), 'separate_items_with_commas' => __( 'Separate items with commas', 'map' ), 'add_or_remove_items' => __( 'Add or remove items', 'map' ), 'choose_from_most_used' => __( 'Choose from the most used', 'map' ), 'popular_items' => __( 'Popular Items', 'map' ), 'search_items' => __( 'Search Items', 'map' ), 'not_found' => __( 'Not Found', 'map' ), 'no_terms' => __( 'No items', 'map' ), 'items_list' => __( 'Items list', 'map' ), 'items_list_navigation' => __( 'Items list navigation', 'map' ), ); $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( 'map_Author', array( 'map_book' ), $args ); } add_action( 'init', 'map_register_ct_Author', 0 );