$postsPerPage = 3;
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => $postsPerPage,
);
//global $wp_query;
$allProjecten = new WP_Query($args);
?>
while ($allProjecten->have_posts()):
$allProjecten->the_post();
$idProject = $post->ID;
$images = get_field('project_gallery');
?>
if ($images): ?>
foreach ($images as $image): ?>
endforeach; ?>
else: ?>
endif ?>
Rundveestal in Broekland
Staalbouw – Argrarischebouw
endwhile;
?>
wp_reset_postdata();
?>