-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
category.php
96 lines (79 loc) · 2.55 KB
/
category.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
/**
* Category archives
*
* @package WordPress
* @subpackage Fictioneer
* @since 3.0
* @see partials/_archive-loop.php
*/
// Header
get_header();
?>
<main id="main" class="main archive category-archive">
<?php do_action( 'fictioneer_main', 'category-archive' ); ?>
<div class="main__wrapper">
<?php do_action( 'fictioneer_main_wrapper' ); ?>
<article class="archive__article">
<header class="archive__header">
<div class="tax-cloud">
<?php
// Setup
$current_id = get_queried_object()->term_id;
$current_count = get_queried_object()->count;
$current_description = get_queried_object()->description;
?>
<div class="tax-cloud__header">
<h1 class="tax-cloud__current">
<?php
printf(
_n(
'<span class="tax-cloud__number">%1$s</span> Result in the <em>"%2$s"</em> category',
'<span class="tax-cloud__number">%1$s</span> Results in the <em>"%2$s"</em> category',
$current_count,
'fictioneer'
),
$current_count,
single_cat_title( '', false )
)
?>
</h1>
<?php if ( ! empty( $current_description ) ) : ?>
<p class="tax-cloud__tax-description"><strong><?php _e( 'Definition:', 'fictioneer' ); ?></strong> <?php echo $current_description; ?></p>
<?php endif; ?>
</div>
<?php
wp_tag_cloud(
array(
'smallest' => 0.625,
'largest' => 1.25,
'unit' => 'rem',
'number' => 0,
'taxonomy' => ['category'],
'exclude' => $current_id,
'show_count' => true,
'pad_counts' => true
)
);
?>
</div>
</header>
<?php get_template_part( 'partials/_archive-loop', null, array( 'taxonomy' => 'category' ) ); ?>
</article>
</div>
<?php do_action( 'fictioneer_main_end', 'category-archive' ); ?>
</main>
<?php
// Footer arguments
$footer_args = array(
'post_type' => null,
'post_id' => null,
'template' => 'category.php',
'breadcrumbs' => array(
[fcntr( 'frontpage' ), get_home_url()],
[sprintf( __( 'Results for Category "%s"', 'fictioneer' ), single_cat_title( '', false ) ), null]
)
);
// Get footer with breadcrumbs
get_footer( null, $footer_args );
?>