Home › Forums › General Issues › How to access ACF field in a custom WordPress Rest API endpoint? › Reply To: How to access ACF field in a custom WordPress Rest API endpoint?
Sorry for the late response.
Basically what you need to do is to assign what you want to return to a varialble and then include that variable.
if (get_post_type() == 'page') {
$faq = '{assign values for faq}';
array_push($results['pages'], array(
'title' => get_the_title(),
'link' => get_the_permalink(),
'faq' => $fag,
));
}
The problem is going finding the ones that you want because you need to search the sub fields the same way that wp searches the content.
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.