Custom Taxonomies

Add to functions.php: add_action( ‘init’, ‘create_my_taxonomies’, 0 );   function create_my_taxonomies() { register_taxonomy( ‘ingredients’, ‘post’, array( ‘hierarchical’ => false, ‘label’ => ‘Ingredients’, ‘query_var’ => true, ‘rewrite’ => true ) ); }