-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathtag.php
47 lines (38 loc) · 816 Bytes
/
tag.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
<?php
/**
* The Tag page of Mynote theme.
*
* @author Terry Lin
* @link https://terryl.in/
*
* @package WordPress
* @subpackage Mynote
* @since 1.0.0
* @version 1.2.0
*/
$cat_description = category_description();
get_header();
?>
<div class="category-header">
<div class="container">
<h1 id="post-title" class="tag" itemprop="headline">
<?php single_cat_title(); ?>
</h1>
<?php if ( ! empty( $cat_description ) ) : ?>
<div class="term-desctiotion"><?php echo $cat_description; ?></div>
<?php endif; ?>
</div>
</div>
<?php
/**
* Hook: mynote_tag_headline_after
*
* The width here is wide, style it with proper CSS code.
*/
do_action( 'mynote_tag_headline_after' );
?>
<main role="main">
<?php get_template_part( 'template-parts/archive' ); ?>
</main>
<?php
get_footer();