2010-02-07 17:16:26 +01:00
|
|
|
<?php get_header(); ?>
|
2010-02-08 19:02:23 +01:00
|
|
|
|
|
|
|
<div id="container">
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="content">
|
2010-02-08 19:02:23 +01:00
|
|
|
|
2010-03-26 20:36:49 +01:00
|
|
|
<h1 class="page-title"><?php
|
2010-03-16 21:17:22 +01:00
|
|
|
printf( __( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
|
2010-02-28 12:43:04 +01:00
|
|
|
?></h1>
|
2010-03-16 21:17:22 +01:00
|
|
|
<?php $categorydesc = category_description(); if ( ! empty( $categorydesc ) ) echo apply_filters( 'archive_meta', '<div class="archive-meta">' . $categorydesc . '</div>' ); ?>
|
2010-02-07 17:16:26 +01:00
|
|
|
|
2010-03-25 23:04:27 +01:00
|
|
|
<?php
|
|
|
|
/* Run the loop for the category page to output the posts.
|
|
|
|
* If you want to overload this in a child theme then include a file
|
|
|
|
* called loop-category.php and that will be used instead.
|
|
|
|
*/
|
|
|
|
get_template_part( 'loop', 'category' );
|
|
|
|
?>
|
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(); ?>
|