-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthor.php
46 lines (31 loc) · 938 Bytes
/
author.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
<?php get_header();?>
<?php get_template_part("/page-templates/common/hero-blog")?>
<section <?php post_class();?> class="ftco-section bg-light">
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-1">
<h2><?php the_archive_title('<h2 class="mb-5 bg-light text-dark text-center">','</h2>');?>
</h2>
<?php
while(have_posts()):
the_post();
?>
<div class="">
<div class="blog-entry">
<div class="text bg-white">
<h3 class="bg-light text-dark text-center"><a href="<?php the_permalink();?>"><?php the_title();?></a></h3>
</div>
</div>
</div>
<?php endwhile;?>
</div>
<div class="col-md-8 offset-md-2 text-center my-5">
<div class="block-27 text-center">
<?php the_posts_pagination();?>
</div>
</div>
</div>
</div>
</section>
<?php get_footer();?>
<?php wp_footer();?>