I’ve created a custom taxonomy.
Now I want to create terms for that taxonomy, and for the custom taxonomy I want to limit an editor to selecting from only among the custom terms.
what I’ve tried
I’ve successfully created a Taxonomy field.
After that I start creating a Taxonomy Term field.
But in the fields options, I cannot see a means to connect and restrict the Term to the custom Taxonomy that I’ve created.
How do I do this exactly?
You will need to set the “Create Terms” option to false.
If you want to limit creating terms to a specific user role you can use an acf/prepare_field filter and set the $field['add_term']
value to false based on the currently logged in user’s role.