Home › Forums › Front-end Issues › Issues creating related posts to multiple CPT and display radio buttons select c › Reply To: Issues creating related posts to multiple CPT and display radio buttons select c
Could you please answer the thread from the forum page, not the email.
Regarding your issue, multiple post objects field is saved in a serialized data like this: a:3:{i:0;s:3:"810";i:1;s:3:"135";i:2;s:3:"814";}
.
With your query arguments, it won’t match any serialized data. You need the arguments like this:
$args = array(
'numberposts' => -1,
'post_type' => 'post',
'meta_query' => array(
array(
'key' => 'services',
'value' => serialize(strval(get_the_ID())),
'compare' => 'LIKE'
),
)
);
I hope this helps.
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.