-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
42 lines (37 loc) · 888 Bytes
/
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
<?php get_header(); ?>
<!-- Main -->
<div id="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<?php
the_archive_title( '<h2 class="page-title">', '</h2>' );
the_archive_description( '<div class="taxonomy-description">', '</div>' );
?>
</header><!-- .page-header -->
<?php endif; ?>
<!-- Posts -->
<section class="posts">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
get_template_part('template-parts/posts/content', get_post_format() );
endwhile;
?>
</section>
<!-- Footer -->
<footer>
<div class="pagination">
<?php
the_posts_pagination( array(
'screen_reader_text' => ' ',
'prev_text' => 'Previous',
'next_text' => 'Next'
) );
?>
</div>
</footer>
<?php else: ?>
<h1><?php _e('Nothing Post Found!!', 'massively'); ?></h1>
<?php endif; ?>
</div>
<?php get_footer(); ?>