Home › Forums › General Issues › How to use Text Field or Text Area to create an array? › Reply To: How to use Text Field or Text Area to create an array?
Hey, late response, but try this:
$text_area = get_field("text_area");
$text_area_arr = explode("\n", $text_area);
$text_area_arr = array_map('trim', $text_area_arr);
If you put each value on a new line in the text area, then $text_area_arr should be an array with each new line value. array_map is to get rid of extra white space.
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.