-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
executable file
·40 lines (33 loc) · 1.23 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
<?php
/**
* The template for displaying archive pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package selfish
*/
get_header();
?>
<div id="primary" class="content-area my-4 container">
<div class="row">
<main id="main" class="site-main col-md-9">
<?php if (have_posts()) : ?>
<header class="page-header border-bottom mb-4">
<?php
the_archive_title('<h1 class="page-title">', '</h1>');
the_archive_description('<div class="archive-description">', '</div>');
?>
</header><!-- .page-header -->
<?php while (have_posts()) : ?>
<?php the_post(); ?>
<?php get_template_part('template-parts/list'); ?>
<?php endwhile; ?>
<?php the_posts_navigation(); ?>
<?php else : ?>
<?php get_template_part('template-parts/content', 'none'); ?>
<?php endif; ?>
</main><!-- #main -->
<?php get_sidebar(); ?>
</div>
</div><!-- #primary -->
<?php get_footer(); ?>