When retrieving posts with wp_query how do I make the loop contain the acf fields?
$args = array( 'post_type' => $postTypes,
'posts_per_page' => $numPosts,
'offset' => $offset,
'meta_query' => $filterArgs );
$loop = new WP_Query( $args );
$postTypes is an array I have filled in advance containing “post”, “page” etc. whatever I need.
The loop will contain only the “standard” WP columns like post_content and so on.
I got the answer from stackoverflow:
<?php while($loop->have_posts()) : $loop->the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<p>My Custom Field: <?php echo get_post_meta(get_the_ID(),'my-custom-field', true); ?>
<?php endwhile; wp_reset_postdata(); ?>