forked from hakkens/davehakkens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag.php
46 lines (34 loc) · 823 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
<?php
include("home.php");
return;
get_header();
get_template_part( 'navbar' );
?>
<section id="primary" class="site-content">
<div id="content" role="main">
<header class="category-header">
<h1 class="category-title"><?php single_cat_title( '', false ); ?></h1>
<?php
// Display optional category description
if ( category_description() ) : ?>
<div class="category-meta"><?php echo category_description(); ?></div>
<?php endif; ?>
</header>
<div id="post-filter">
<ul>
<li class="label"></li>
<li class="active">
<a href="<?php echo site_url(); ?>">Show all</a>
</li>
<?php
wp_nav_menu([
'container' => '',
'theme_location' => 'grid_filter'
]);
?>
</ul>
</div>
<div id="post-grid">
</div>
</div>
<?php get_footer(); ?>