Home › Forums › Add-ons › Repeater Field › Repeater Sub-field 'Date' in array › Reply To: Repeater Sub-field 'Date' in array
Do you want to select all posts with the selected date from the form?
If so you can use something like this:
https://support.advancedcustomfields.com/forums/topic/order-by-subfield-values/
You can rework it for a meta_query like this:
'meta_query' => array(
array(
'key' => 'other_information_%_date',
'compare' => 'LIKE',
'value' => $rep_date,
'type' => 'DATE' //May not be necessary
)
Hope that helps, or if you got another solution I would love to see it 😀
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.