-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy patharchive.php
45 lines (36 loc) · 1.16 KB
/
archive.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
<?php get_header(); ?>
<div class="wrapper">
<h1><?= get_the_archive_title() ?></h1>
<ul class="basic-list">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
?>
<li class="basic-list-item">
<a class="basic-list-link" href="<?php the_permalink() ?>">
<?php if ( has_post_thumbnail() ) { ?>
<div class="list-thumb-right">
<?php the_post_thumbnail(); ?>
</div>
<?php } ?>
<h2 class="basic-list-title">
<?php the_title(); ?>
</h2>
<div class="basic-list-meta">
<?= get_the_date() ?>
</div>
<div class="basic-list-excerpt">
<?php the_excerpt() ?>
</div>
</a>
</li>
<?php
}
} ?>
</ul>
<div class="text-center padding">
<?= paginate_links() ?>
</div>
</div>
<?php get_footer() ?>