Search to include external content
For searching among your posts through Advanced custom fields, use fallowing query: $args = [ ‘post_type’ => ‘post’, ‘meta_query’ => [ ‘relation’ => ‘OR’, [ ‘key’ => ‘NAME_OF_ACF_FIELD’, ‘compare’ => ‘like’, ‘value’ => ‘%’.$search_value.”, ] ] ]; $items = new WP_Query($args); while($items->have_posts()) { $items->the_post(); the_title(); } This will output the titles that matches our search … Read more