Home › Forums › Front-end Issues › Add ACF Fields to WordPress Search › Reply To: Add ACF Fields to WordPress Search
Your problem is that you are searching the post type of products. The information about each image is not associated with the product, this information is part of the post for the image which is an “attachment” post type. If you want to search images then you need to search attachments.
$args = array(
'post_type' => 'attachment',
'post_status' => 'inherit',
'post_mime_type' => 'image',
'order' => 'ASC',
'posts_per_page' => -1,
's' => $s
);
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.