-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.php
executable file
·39 lines (30 loc) · 988 Bytes
/
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
<?php
/**
* The template for displaying Category pages.
*
* @package WordPress
* @subpackage Siren
* @version 3.0
*/
get_header(); ?>
<section class="section section-main archive_section archive-category_section" role="main">
<?php if ( have_posts() ) : ?>
<header class="header archive_header archive-category_header">
<h1 class="title archive_title archive-category_title">
<?php printf( __( 'Category Archives: %s', 'siren' ), single_cat_title( '', false ) ); ?>
</h1>
<?php if ( category_description() ) : ?>
<div class="meta archive_meta archive-category_meta">
<?php echo category_description(); ?>
</div>
<?php endif; ?>
</header>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php siren_paging_nav(); ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
</section>
<?php get_footer(); ?>