-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-nieuws.php
78 lines (66 loc) · 2.03 KB
/
page-nieuws.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
* Template Name: Nieuws
*/
?>
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php include_once('includes/header-vervolg-intro.php'); ?>
<?php include_once('includes/header-vervolg-breadcrumbs.php'); ?>
<style>
.bg-foto {
background-size: cover;
width: 100%;
height: 250px;
background-position: center;
overflow: hidden;
}
</style>
<section id="nieuws" class="pt-3 pb-3 vlak-lichtgrijs">
<div class="container pb-5">
<div class="row">
<div class="col-12">
<?php the_content(); ?>
</div>
</div>
<div class="row row-eq-height">
<?php
$args_nieuws = array (
'post_type' => 'post',
'posts_per_page' => -1,
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
);
$query_nieuws = new WP_Query( $args_nieuws );
if ($query_nieuws->have_posts()) :
while ($query_nieuws->have_posts()) :
$query_nieuws->the_post(); ?>
<div class="col-12 col-md-6 col-lg-4 fadeIn wow mt-4 grid-item">
<?php if( get_field('nieuwsfoto') ):
$hoofdAfbeelding = get_field('nieuwsfoto');
$size = 'large';
$afbeeldingID = $hoofdAfbeelding['ID'];
$afbeelding_array = wp_get_attachment_image_src($afbeeldingID, $size);
$afbeelding_url = $afbeelding_array[0];
?>
<a href="<?php the_permalink(); ?>">
<div class="bg-foto mb-3 hoef" style="background-image: url('<?php echo $afbeelding_url; ?>');"></div>
</a>
<?php endif; ?>
<h5 class="tekst-secondair"><?php the_title(); ?></h5>
<div class="blok-tekst mt-4">
<?php the_excerpt(); ?>
</div>
<a href="<?php the_permalink(); ?>" class="button button-secondair animated fadeInLeft delay-3s mt-2 mb-5">Lees verder <i class="fal fa-long-arrow-right"></i></a>
</div>
<?php
endwhile;
endif;
wp_reset_query();
?>
</div>
</div>
</section>
<?php endwhile; endif; ?>
<?php get_footer(); ?>