forked from hukl/wwworld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategory.php
More file actions
30 lines (24 loc) · 798 Bytes
/
Copy pathcategory.php
File metadata and controls
30 lines (24 loc) · 798 Bytes
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
<?php
/**
* @package WordPress
* @subpackage Toolbox
*/
get_header(); ?>
<div class="row">
<div class="column grid_8" id="content">
<section id="primary">
<header class="page-header">
<h1 class="page-title"><?php
printf( __( 'Kategorie: %s', 'themename' ), '<span>' . single_cat_title( '', false ) . '</span>' );
?></h1>
<?php $categorydesc = category_description(); if ( ! empty( $categorydesc ) ) echo apply_filters( 'archive_meta', '<div class="archive-meta">' . $categorydesc . '</div>' ); ?>
</header>
<?php get_template_part( 'loop', 'category' ); ?>
</div><!-- #content -->
</section>
<!-- #primary -->
<div class="column grid_3">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>