-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
85 lines (62 loc) · 2.92 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
75
76
77
78
79
80
81
82
83
84
85
<?php
/**
* The template for displaying archive pages
* @package log-book
* @version 1.0.1
*/
get_header();
$breadcrumb_type = log_book_get_option( 'breadcrumb_type' );
if($breadcrumb_type == 'normal'):
?>
<!-- Breadcrumb Header -->
<div class="tm-breadcrumb" <?php echo $header_style; ?>>
<div class="container">
<h1 class="title"><?php the_archive_title(); ?></h1>
<?php do_action( 'log_book_breadcrumb_options' ); ?>
</div>
</div>
<!-- /Breadcrumb Header -->
<?php endif; ?>
<div class="container">
<!-- Main Content Area -->
<section class="section-wrap">
<div class="row">
<div class="col-sm-12">
<!-- Blog Grid Posts -->
<div class="tm-blog-grid">
<div class="row">
<div <?php if(get_theme_mod('archive_sidebar')==true) : ?> class="col-md-12" <?php else: ?>class="col-md-8 left-block" <?php endif; ?> >
<?php if($breadcrumb_type == 'disable'): ?>
<h1 class="title blog-post col-lg-12 "><?php the_archive_title(); ?></h1>
<?php endif;
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content');
endwhile;
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>
<div class="tm-pagination">
<?php the_posts_pagination( array(
'mid_size' => 2,
'prev_text' => __( '<<', 'log-book' ),
'next_text' => __( '>>', 'log-book' ),
) ); ?>
</div>
</div>
<?php if(get_theme_mod('archive_sidebar')==false) : ?>
<div class="col-md-4">
<div class="tm-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<?php endif; ?>
</div><!-- .row -->
</div>
</div>
</div>
</section>
</div>
<?php get_footer();