-
Notifications
You must be signed in to change notification settings - Fork 2
/
blog-template.php
71 lines (56 loc) · 2.68 KB
/
blog-template.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
<?php
/*
Template Name: Blog template
Template Post Type: page
*/
?>
<?php get_header(); ?>
<?php require 'includes/page-buffer.php'; ?>
<?php require 'includes/banner.php'; ?>
<?php
$blogpostsArgs = array(
'post_type' => 'blogposts',
'posts_per_page' => -1,
'order' => 'ASC',
'orderby' => 'date'
);
$blogposts = new WP_Query($blogpostsArgs);
?>
<div class="section blog-section <?php if(has_post_thumbnail()): ?>section-blog-with-banner<?php endif; ?>">
<?php if($blogposts->have_posts()): ?>
<?php if(sizeof($blogposts->posts) < 3): ?>
<div class="blog-row blog-row-centered">
<?php while($blogposts->have_posts()): $blogposts->the_post(); ?>
<div class="blog-card">
<a href="<?= esc_url(get_permalink()) ?>" class="blog-card-image-container">
<img src="<?= esc_url(get_the_post_thumbnail_url()) ?>" class="blog-card-image">
</a>
<div class="blog-card-content">
<h4 class="blog-card-title"><a href="<?= esc_url(get_permalink()) ?>"><?= the_title(); ?></a></h4>
<p class="blog-card-date"><?php echo get_the_date( 'd/m/y' ); ?></p>
<div class="blog-card-description"><?= the_excerpt() ?></div>
<a href="<?= esc_url(get_permalink()) ?>" class="blog-card-read-more">Read more</a>
</div>
</div>
<?php endwhile; ?>
</div>
<?php else: ?>
<div class="blog-row">
<?php while($blogposts->have_posts()): $blogposts->the_post(); ?>
<div class="blog-card">
<a href="<?= esc_url(get_permalink()) ?>" class="blog-card-image-container">
<img src="<?= esc_url(get_the_post_thumbnail_url()) ?>" class="blog-card-image">
</a>
<div class="blog-card-content">
<h4 class="blog-card-title"><a href="<?= esc_url(get_permalink()) ?>"><?= the_title(); ?></a></h4>
<p class="blog-card-date"><?php echo get_the_date( 'd/m/y' ); ?></p>
<div class="blog-card-description"><?= the_excerpt() ?></div>
<a href="<?= esc_url(get_permalink()) ?>" class="blog-card-read-more">Read more</a>
</div>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>
<?php endif; ?>
</div>
<?php get_footer(); ?>