WordPress is awesomely flexible and allows creating custom post types and taxonomies.
If you happen to need to display your custom Taxonomy Terms in a nice dropdown here is how to do it.

[code]
<?php

echo wp_dropdown_categories(array(
'name' => 'my_input_name',
'show_option_none' => 'Select My Custom Taxonomy',
'show_count' => 0,
'orderby' => 'name',
'hierarchical' => 1,
'hide_empty' => 0, // i.e. do not hide cats that don't have items
'taxonomy' => 'my_custom_tax', // whatever you've used in register_taxonomy()...
'echo' => 0, // return the string
));
?>
[/code]

Related:

Other searches: Terms of Custom Taxonomy in a Dropdown Menu

Disclaimer: The content in this post is for educational purposes only. Always remember to take a backup before doing any of the suggested steps just to be on the safe side.
Referral Note: When you purchase through an referral link (if any) on this page, we may earn a commission.
If you're feeling thankful, you can buy me a coffee or a beer