Taxonomy Generator

Overview

Use this tool to create custom code for Taxonomies with register_taxonomy() function.

Usage

  • Fill in the user-friendly form.
  • Click the “Update Code” button.
  • Copy the code to your project.
  • Or save it as a snippet and share with the community.

Examples

If you are still learning how to use this tool, check out the following examples:

The function used in the code.
Add Child Themes Support.
Translation file Text Domain. Optional.
Key used in the code. Up to 32 characters, lowercase.
Taxonomy singular name.
Taxonomy plural name.
Comma separated list of Post Types.
Hierarchical taxonomy allows descendants.
Show this taxonomy in the admin UI.
Show taxonomy managing UI in the admin.
Show taxonomy columns on associated post-types.
Show in tag cloud widget.
Taxonomy available for selection in Navigation Menus.
Direct query variable used in WP_Query. e.g. WP_Query( array( 'taxonomy' => 'genre', 'term' => 'comedy' ) )
Custom query variable.
Set custom user capabilities to manage taxonomy. Default: category capabilities
Whether to include the taxonomy in the REST API.
To change the base url of REST API route. Default is the taxonomy key.
REST API Controller class name. Default is 'WP_REST_Terms_Controller'.
A function name that will be called when the count of an associated Post Type is updated.
  Save Snippet
// Register Custom Taxonomy
function custom_taxonomy_work() {

	$labels = array(
		'name'                       => _x( 'Work Categories', 'Taxonomy General Name', 'cmi' ),
		'singular_name'              => _x( 'Work Category', 'Taxonomy Singular Name', 'cmi' ),
		'menu_name'                  => __( 'Work Category', 'cmi' ),
		'all_items'                  => __( 'All Work Categories', 'cmi' ),
		'parent_item'                => __( 'Parent Work Category', 'cmi' ),
		'parent_item_colon'          => __( 'Parent Item:', 'cmi' ),
		'new_item_name'              => __( 'New Work Category', 'cmi' ),
		'add_new_item'               => __( 'Add New Work Category', 'cmi' ),
		'edit_item'                  => __( 'Edit Work Category', 'cmi' ),
		'update_item'                => __( 'Update Work Category', 'cmi' ),
		'view_item'                  => __( 'View Item', 'cmi' ),
		'separate_items_with_commas' => __( 'Separate Work Category with commas', 'cmi' ),
		'add_or_remove_items'        => __( 'Add or remove Work Category', 'cmi' ),
		'choose_from_most_used'      => __( 'Choose from the most used Work Category', 'cmi' ),
		'popular_items'              => __( 'Popular Items', 'cmi' ),
		'search_items'               => __( 'Search Work Category', 'cmi' ),
		'not_found'                  => __( 'Work Category Not Found', 'cmi' ),
		'no_terms'                   => __( 'No items', 'cmi' ),
		'items_list'                 => __( 'Items list', 'cmi' ),
		'items_list_navigation'      => __( 'Items list navigation', 'cmi' ),
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => false,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => true,
		'show_tagcloud'              => true,
	);
	register_taxonomy( 'work_categories', array( 'work' ), $args );

}
add_action( 'init', 'custom_taxonomy_work', 0 );