forked from richtabor/tabor-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.php
More file actions
58 lines (46 loc) · 1.69 KB
/
archive.php
File metadata and controls
58 lines (46 loc) · 1.69 KB
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
<?php
/**
* The template for displaying archive pages.
*
* @link http://codex.wordpress.org/Template_Hierarchy
*
* @package Tabor
* @link https://themebeans.com/themes/tabor
*/
get_header();
if ( have_posts() ) :
?>
<header class="page-header page-header__archive container bottom-spacer">
<?php
the_archive_title( '<h2 class="page-title h2">', '</h2>' );
the_archive_description( '<div class="taxonomy-description header-font">', '</div>' );
tabor_related_categories();
?>
</header>
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
/**
* Run the loop for the archive view to output the results.
* If you want to overload this in a child theme then include a file
* called content-excerpt.php in the /components/post/ directory and that will be used instead.
*/
get_template_part( 'components/post/content', 'excerpt' );
endwhile;
/*
* The posts pagination outputs a set of page numbers with links to the previous and next pages of posts.
*
* @link https://codex.wordpress.org/Function_Reference/the_posts_pagination
*/
the_posts_pagination(
array(
'prev_text' => wp_kses( tabor_get_svg( array( 'icon' => 'left' ) ), tabor_svg_allowed_html() ) . '<span class="screen-reader-text">' . __( 'Previous page', 'tabor' ) . '</span>',
'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'tabor' ) . '</span>' . wp_kses( tabor_get_svg( array( 'icon' => 'right' ) ), tabor_svg_allowed_html() ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'tabor' ) . ' </span>',
)
);
else :
get_template_part( 'components/post/content', 'none' );
endif;
get_footer();