forked from InfoAmazonia/infoamazonia-wptheme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
taxonomy-blog-category.php
41 lines (33 loc) · 1002 Bytes
/
taxonomy-blog-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
<?php get_header(); ?>
<section id="content">
<div id="blog-archive" class="gray-page archive-page">
<?php if(have_posts()) : ?>
<section id="blog-posts" class="blog-loop-section archive-list">
<div class="page-header">
<div class="container">
<div class="twelve columns">
<h2><a href="<?php echo get_post_type_archive_link('blog-post'); ?>">Blog</a></h2>
<h1><?php single_term_title(); ?></h1>
</div>
</div>
</div>
<div class="container">
<?php get_template_part('loop', 'blog-post'); ?>
<div class="four columns">
<div class="row sources sidebar-item">
<h3><?php _e('Categories', 'infoamazonia'); ?></h3>
<ul>
<?php wp_list_categories(array(
'taxonomy' => 'blog-category',
'title_li' => ''
)); ?>
</ul>
</div>
</div>
</div>
</section>
<?php endif; ?>
</div>
</section>
<?php get_template_part('section', 'main-widget'); ?>
<?php get_footer(); ?>