Car Types Taxonomy
if ( ! function_exists( 'car_type_taxon' ) ) {
// Register Custom Taxonomy
function car_type_taxon() {
$labels = array(
'name' => _x( 'Car Types', 'Taxonomy General Name', 'cio_plugin' ),
'singular_name' => _x( 'Car Type', 'Taxonomy Singular Name', 'cio_plugin' ),
'menu_name' => __( 'Car Types', 'cio_plugin' ),
'all_items' => __( 'All Types', 'cio_plugin' ),
'parent_item' => __( 'PArental Type', 'cio_plugin' ),
'parent_item_colon' => __( 'Parental Type', 'cio_plugin' ),
'new_item_name' => __( 'New Type Name', 'cio_plugin' ),
'add_new_item' => __( 'Add New Type', 'cio_plugin' ),
'edit_item' => __( 'Edit Type', 'cio_plugin' ),
'update_item' => __( 'Update Type', 'cio_plugin' ),
'view_item' => __( 'View Type', 'cio_plugin' ),
'separate_items_with_commas' => __( 'Separate Types with commas', 'cio_plugin' ),
'add_or_remove_items' => __( 'Add or Remove Types', 'cio_plugin' ),
'choose_from_most_used' => __( 'Choose From Most Used', 'cio_plugin' ),
'popular_items' => __( 'Popular Types', 'cio_plugin' ),
'search_items' => __( 'Search Types', 'cio_plugin' ),
'not_found' => __( 'Not FOund', 'cio_plugin' ),
);
$args = array(
'labels' => $labels,
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_admin_column' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => true,
);
register_taxonomy( 'car-type', array( 'car_insurance' ), $args );
}
// Hook into the 'init' action
add_action( 'init', 'car_type_taxon', 0 );
}