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 event_categories() {

	$labels = array(
		'name'                       => _x( 'Event Categories', 'Taxonomy General Name', 'loveland' ),
		'singular_name'              => _x( 'Event Category', 'Taxonomy Singular Name', 'loveland' ),
		'menu_name'                  => __( 'Event Categories', 'loveland' ),
		'all_items'                  => __( 'All Event Categories', 'loveland' ),
		'parent_item'                => __( 'Parent Event Category', 'loveland' ),
		'parent_item_colon'          => __( 'Parent Event Category:', 'loveland' ),
		'new_item_name'              => __( 'New Event Category Name', 'loveland' ),
		'add_new_item'               => __( 'Add New Event Category', 'loveland' ),
		'edit_item'                  => __( 'Edit Event Category', 'loveland' ),
		'update_item'                => __( 'Update Event Category', 'loveland' ),
		'view_item'                  => __( 'View Event Category', 'loveland' ),
		'separate_items_with_commas' => __( 'Separate event categories with commas', 'loveland' ),
		'add_or_remove_items'        => __( 'Add or event categories', 'loveland' ),
		'choose_from_most_used'      => __( 'Choose from the most used', 'loveland' ),
		'popular_items'              => __( 'Popular Event Categories', 'loveland' ),
		'search_items'               => __( 'Search Event Categories', 'loveland' ),
		'not_found'                  => __( 'Not Found', 'loveland' ),
		'no_terms'                   => __( 'No event categories', 'loveland' ),
		'items_list'                 => __( 'Event Categories list', 'loveland' ),
		'items_list_navigation'      => __( 'Event Categories list navigation', 'loveland' ),
	);
	$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( 'event_category', array( 'events' ), $args );

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