I creating a real estate platform where allow users to add their listing. The users are people who may not know how to using wp platform, so I make it as easy as possible for them to make a post. Thanks for the custom post type, I manage to create a post type that specifically for add listing. In this post type, there are many custom fields to store the necessary information like location, property type and etc...
Since I make it simple to use, so I didn't use the categories to sort the posts. However, what I like to do is let the custom field values as the taxonomies. For example:
[States] <- this is custom field in select/radio type
- [state 1] <- this is custom field value option for states
- [state 2] <- this is custom field value option for states
- [state 3] <- this is custom field value option for states
- [state 4] <- this is custom field value option for states
- [etc...] <- this is custom field value option for states
So I want to sort the posts according to the value in State that user selected. My idea is to make each of the value [[state 1],[state 2],[state 3]...] to be the categories. When the user select the option, it will automatically become the categories of the post. Possible to do this?