Home › Forums › ACF PRO › WP_Query and sub-fields › Reply To: WP_Query and sub-fields
Hi @huwrowlands
That’s weird. Your query should search only the post in the current week. Could you please tell me how did you set the date? Did you use the repeater field? Also, could you please try this query:
$args = array(
'posts_per_page' => -1,
'post_type' => 'schedule',
'meta_query' => array(
array(
'key' => 'schedule_time_slot_%_schedule_date',
'compare' => '=',
'value' => $mon,
)
)
);
If that doesn’t work, could you please share the JSON export of your field group?
Thanks 🙂
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.