Home › Forums › Backend Issues (wp-admin) › 'Tweak' taxonomy select › Reply To: 'Tweak' taxonomy select
ACF calls the function wp_list_categories() to show a select field for taxonomy fields.
To alter the display of the select field you must build a custom walker.
You can alter the walker used by the field using the filter on acf/fields/taxonomy/wp_list_categories
$args['walker'] = new YourCustomWalkerClass();
Beyond this I can’t really help you much.
Here is one tutorial https://phppot.com/wordpress/wordpress-custom-walker/
many more can be found by searching the web for “wp_list_categories custom walker”
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.