2010-03-30 00:03:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 19:04:10 +02:00
|
|
|
* Template for displaying Category Archive pages
|
2010-03-30 00:03:15 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 19:10:21 +02:00
|
|
|
* @subpackage Twenty_Ten
|
2010-05-17 08:36:11 +02:00
|
|
|
* @since Twenty Ten 1.0
|
2010-03-30 00:03:15 +02:00
|
|
|
*/
|
|
|
|
|
2010-06-11 18:55:41 +02:00
|
|
|
get_header(); ?>
|
2010-02-08 19:02:23 +01:00
|
|
|
|
|
|
|
<div id="container">
|
2010-05-10 23:10:12 +02:00
|
|
|
<div id="content" role="main">
|
2010-02-08 19:02:23 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
<h1 class="page-title">
|
|
|
|
<?php
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Category title. */
|
2010-03-16 21:17:22 +01:00
|
|
|
printf( __( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
|
2017-12-01 00:11:00 +01:00
|
|
|
?>
|
|
|
|
</h1>
|
2010-05-10 22:30:58 +02:00
|
|
|
<?php
|
2010-05-16 08:26:18 +02:00
|
|
|
$category_description = category_description();
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! empty( $category_description ) ) {
|
|
|
|
echo '<div class="archive-meta">' . $category_description . '</div>';
|
|
|
|
}
|
2010-02-07 17:16:26 +01:00
|
|
|
|
2013-10-09 22:39:09 +02:00
|
|
|
/*
|
2013-09-25 19:04:10 +02:00
|
|
|
* Run the loop for the category page to output the posts.
|
2010-03-25 23:04:27 +01:00
|
|
|
* If you want to overload this in a child theme then include a file
|
|
|
|
* called loop-category.php and that will be used instead.
|
|
|
|
*/
|
2010-03-30 00:03:15 +02:00
|
|
|
get_template_part( 'loop', 'category' );
|
2010-03-25 23:04:27 +01:00
|
|
|
?>
|
2010-02-08 19:02:23 +01:00
|
|
|
|
|
|
|
</div><!-- #content -->
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- #container -->
|
2010-02-08 19:02:23 +01:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2010-03-16 21:17:22 +01:00
|
|
|
<?php get_footer(); ?>
|