De Heeren door de jaren heen
$historie=new WP_Query(array(
'post_type'=>'geschiedenis',
'meta_key' => 'jaar',
'orderby' => 'jaar',
'order' => 'ASC',
'posts_per_page' => 100
));
$currentJaar = null;
if ($historie->have_posts()) {
while ($historie->have_posts()) {
$historie->the_post();
if (is_null($currentJaar) || $currentJaar != get_field('jaar')) {
if (!is_null($currentJaar)) {
?>
}
$currentJaar = get_field('jaar');
?>
}
?>
-
if ($fotoverslag = get_field('fotoverslag')): ?>
preg_match('~\[gallery ids="(.*)"]~', $fotoverslag->post_content, $matches);
$attachments = explode(',', $matches[1]);
$randomAttachment = $attachments[array_rand($attachments)];
?>
Onderweg naar Bern
else: ?>
$photo = wp_get_attachment_image_src(get_post_thumbnail_id(),'lightbox', false);
?>
the_post_thumbnail('sidebar'); ?>
Onderweg naar Bern
endif; ?>
}
?>
wp_reset_postdata();
} else {
do_action( 'builder_template_show_not_found' );
}
wp_reset_postdata();
?>
include('partials/share.php'); ?>