forked from athemes/Cali
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
74 lines (67 loc) · 1.77 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
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
72
73
74
<?php
/**
* The template for displaying archive pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Cali
*/
$sidebar = get_theme_mod( 'cali_blog_archives_sidebar' );
if ( !$sidebar ) {
$cols = 'col-md-12';
$pageLayout = 'page-no-sidebar';
$postLayout = 'post-layout-columns-3';
$postCols = 'col-sm-6 col-md-4';
} else {
$cols = 'col-md-8';
$pageLayout = 'page-with-sidebar';
$postLayout = 'post-layout-columns-2';
$postCols = 'col-sm-6';
}
get_header(); ?>
<div class="col-md-12">
<div class="page-header">
<?php cali_page_title(); ?>
</div>
</div>
<div id="primary" class="content-area <?php echo $pageLayout ?> <?php echo $cols; ?>">
<main id="main" class="site-main">
<section>
<?php if ( have_posts() ) : ?>
<div class="post-layout clearfix <?php echo $postLayout ?>">
<div class="row">
<?php
/* Start the Loop */
while ( have_posts() ) : the_post(); ?>
<div class="<?php echo $postCols ?>">
<?php
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_format() );
?>
</div>
<?php
endwhile; ?>
<div class="col-xs-12">
<?php
/* Post pagination */
the_posts_pagination();
?>
</div>
</div>
</div>
<?php
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</section>
</main><!-- #main -->
</div><!-- #primary -->
<?php
if ( $sidebar ) {
get_sidebar();
}
get_footer();