10 months ago on March 28, 2024 at 4:53 pm
I have a custom post type with a few ACF taxonomies which allow for multiple selections within a taxonomy. For one of the custom taxonomies (Age), the multiple selections are not separated by a comma when I export the custom post type. The Age taxonomy is not Hierarchical.
How do I get the export to generate with commas separating the values.
For example, if ages 10, 11, 12, and 13 are selected, the export of both tax_age.name and tax_age.slug is
10111213
Here is an export of the Taxonomy: Age
term_id | name | slug |
58 | 10 | 10 |
59 | 11 | 11 |
60 | 12 | 12 |
61 | 13 | 13 |
62 | 14 | 14 |
63 | 15 | 15 |
64 | 16 | 16 |
65 | 17 | 17 |
66 | 18 | 18 |
212 | 19 | 19 |
213 | 20 | 20 |
214 | 21 | 21 |
215 | 22 | 22 |
216 | 23 | 23 |
217 | 24 | 24 |
218 | 25 | 25 |
67 | 5 | 5 |
54 | 6 | 6 |
55 | 7 | 7 |
56 | 8 | 8 |
57 | 9 | 9 |
Thank you.