This repository has been archived by the owner on Jan 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathauthor.php
43 lines (39 loc) · 1.48 KB
/
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
<?php
/**
* The template for displaying author archive pages.
*
*/
get_header();
?>
<!-- HEADER TITLE BREADCRUBS SECTION -->
<?php echo wp_kses_post(political_header_title_breadcrumbs()); ?>
<!-- Page content -->
<div class="high-padding" id="main-content">
<!-- Blog content -->
<div class="container blog-posts">
<div class="row">
<div class="col-md-9 main-content">
<?php if ( have_posts() ) : ?>
<div class="row">
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php /* Loop - Variant 1 */ ?>
<?php get_template_part( 'content', 'blogloop-v3' ); ?>
<?php endwhile; ?>
<div class="political-pagination-holder col-md-12">
<div class="political-pagination pagination">
<?php the_posts_pagination(); ?>
</div>
</div>
</div>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
</div>
<div class="col-md-3 sidebar-content">
<?php get_sidebar(); ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>