-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive-news.php
39 lines (29 loc) · 1.09 KB
/
archive-news.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
<?php get_header(); ?>
<div class="container">
<div class="row">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="col-lg-12 mt-5">
<span class="img-fluid rounded image-contained mb-3"><?php the_post_thumbnail(); ?></span>
<div class="date_holder"><span class="day"><?php the_time('j'); ?></span><span class="month"><?php the_time('F'); ?></span></div>
<hr>
<h1 class="content-header mt-4"><?php the_title(); ?></h1>
<p class="lead">By <a href="#"><?php echo get_the_author(); ?></a></p>
<hr>
<p>
<?php if (has_excerpt()) {
the_excerpt();
} else {
echo wp_trim_words(get_the_content(),40);
} ?>
</p>
<a class="btn btn-primary mt-3" href="<?php the_permalink() ?>">Read more</a>
</div>
<hr class="specialHr">
<?php endwhile; ?>
<ul class="pagination pagination-lg">
<?php echo paginate_links();?>
</ul>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>