Service Auto Taxonomy

Home » Snippets » Service Auto Taxonomy
0

Created with:

Taxonomy generator

Visibility: 

public

Creator: Houssam

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project
				/**
 * Registers the 'service_auto' taxonomy.
 * 
 * @return void
 */
function automobile_register_taxonomy_service_auto() : void {
	$labels = [
		'name' => _x( 'Catégories', 'Taxonomy Name', 'automobile' ),
		'singular_name' => _x( 'Catégorie', 'Taxonomy Singular Name', 'automobile' ),
		'menu_name' => __( 'Catégories ', 'automobile' ),
		'all_items' => __( 'All Catégories ', 'automobile' ),
		'parent_item' => __( 'Parent Catégorie ', 'automobile' ),
		'parent_item_colon' => __( 'Parent Catégorie: ', 'automobile' ),
		'new_item_name' => __( 'New Catégorie ', 'automobile' ),
		'add_new_item' => __( 'Add New Catégorie ', 'automobile' ),
		'edit_item' => __( 'Edit Catégorie ', 'automobile' ),
		'update_item' => __( 'Update Catégorie ', 'automobile' ),
		'view_item' => __( 'View Catégorie ', 'automobile' ),
		'add_or_remove_items' => __( 'Add or Remove Catégories ', 'automobile' ),
		'choose_from_most_used' => __( 'Choose from most used Catégories ', 'automobile' ),
		'popular_items' => __( 'Popular Catégories ', 'automobile' ),
		'search_items' => __( 'Search Catégories ', 'automobile' ),
		'not_found' => __( 'Not Found ', 'automobile' ),
		'no_terms' => __( 'No Catégories ', 'automobile' ),
		'items_list' => __( 'Catégories List ', 'automobile' ),
		'items_list_navigation' => __( 'Catégories List Navigation ', 'automobile' ),
	];

	$args = [
		'labels' => $labels,
		'hierarchical' => true,
		'public' => true,
		'show_ui' => true,
		'show_admin_column' => true,
		'show_in_nav_menus' => true,
		'show_tagcloud' => true,
		'show_in_rest' => true,
		'rest_base' => 'service_auto',
		'rest_controller_class' => 'WP_REST_service_auto_Terms_Controller',
	];

	register_taxonomy( 'service_auto', ['service'], $args );
}
add_action( 'init', 'automobile_register_taxonomy_service_auto' );
			

Register an account to save your snippets or go Pro to get more features.