Register a custom taxonomy

Register a custom taxonomy

If you want to Register a custom taxonomy, add this to your functions.php file:
function register_genre_taxonomy() {
	register_taxonomy(
		'genre',
		'book',
		array(
			'label'        => 'Genres',
			'hierarchical' => true,
			'public'       => true,
		)
	);
}
add_action( 'init', 'register_genre_taxonomy' );

Categorize like a librarian. Filter like a ninja. 📚⚔