-
Notifications
You must be signed in to change notification settings - Fork 0
/
taxonomy-wasentha_artwork_series.php
69 lines (47 loc) · 1.47 KB
/
taxonomy-wasentha_artwork_series.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
<?php
/**
* Artwork Series Taxonomy index 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="wasentha_artwork-index" class="page-content">
<div class="row">
<?php if ( have_posts() ) : ?>
<div class="small-12 medium-9 columns">
<h1>Artwork in the <?php echo $term->name; ?> Series</h1>
<?php while ( have_posts() ) :
the_post();
?>
<article <?php post_class( array( 'media-object', 'stack-for-small' ) ); ?>>
<?php get_template_part( 'partials/wasentha_artwork', '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();