forked from wp-blocks/modul-r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
43 lines (32 loc) · 1.02 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
<?php
/**
* The template for displaying archive pages
*/
get_header();
?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<?php the_archive_title( '<h1 class="page-title main-width has-primary-color">', '</h1>' ); ?>
<?php if (is_author()) {
printf('<p>%s</p>', esc_html(get_the_author_meta( 'description' )) );
} else if (is_tag()) {
the_archive_description();
} ?>
</header>
<?php // Start the Loop.
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content/content', 'excerpt' );
endwhile;
// Previous/next page navigation.
printf( '<div class="main-width alignwide text-center">%s</div>', modul_r_archive_nav() );
// If no content, include the "No posts found" template.
else :
get_template_part( 'template-parts/content/content', 'none' );
endif;
?>
</main><!-- /main -->
</div><!-- /primary -->
<?php
get_footer();