Hello, I have a front-end acf form that has a taxonomy field in which the form submitter has to choose from a list of terms. The terms displayed by the taxonomy don’t seem to follow a particular order. Is there any way to modify the order in which they are displayed?
The order the terms are returned is the default WP order, unless there is some type of filter that’s changing the order for get_terms()
If you’re using ACF5 you can use this to modify the arguments for get_terms()
https://www.advancedcustomfields.com/resources/acffieldstaxonomyquery/
Ah perfect. Didn’t expect it would be so easy 🙂 Thank you.