-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
78 lines (56 loc) · 1.64 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
<?php
/**
* Post archive page.
*
* @since 0.1.0
* @package wasentha
*
* @global WP_Query $wp_query
*/
// Don't load directly
if ( ! defined( 'ABSPATH' ) ) {
die;
}
get_header();
global $wp_query;
$term = $wp_query->get_queried_object();
?>
<section id="post-index" class="page-content">
<div class="row">
<?php
if ( have_posts() ) : ?>
<div class="small-12 medium-9 columns">
<?php
if ( is_tax() || is_category() ) : ?>
<h1><?php echo get_post_type_object( get_post_type() )->labels->name; ?> in the <?php echo $term->name; ?> Category</h1>
<?php
endif;
while ( have_posts() ) :
the_post();
?>
<article <?php post_class(); ?>>
<?php get_template_part( 'partials/post', 'loop-single' ); ?>
</article>
<?php
endwhile;
?>
<div class="pagination">
<?php echo paginate_links( array(
'current' => get_query_var( 'paged' ),
) ); ?>
</div>
</div>
<?php
else:
?>
<div class="small-12 medium-9 columns">
Nothing found.
</div>
<?php endif; ?>
<div class="small-12 medium-3 columns sidebar">
<?php dynamic_sidebar( 'main-sidebar' ); ?>
</div>
</div>
</section>
<?php
get_footer();