2010-02-07 11:16:26 -05:00
|
|
|
<?php get_header(); ?>
|
2010-02-08 13:02:23 -05:00
|
|
|
|
|
|
|
<div id="container">
|
2010-02-07 11:16:26 -05:00
|
|
|
<div id="content">
|
2010-02-08 13:02:23 -05:00
|
|
|
|
2010-02-28 06:43:04 -05:00
|
|
|
<h1 class="page-title"><?php
|
2010-03-16 16:17:22 -04:00
|
|
|
printf( __( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
|
2010-02-28 06:43:04 -05:00
|
|
|
?></h1>
|
2010-03-16 16:17:22 -04:00
|
|
|
<?php $categorydesc = category_description(); if ( ! empty( $categorydesc ) ) echo apply_filters( 'archive_meta', '<div class="archive-meta">' . $categorydesc . '</div>' ); ?>
|
2010-02-07 11:16:26 -05:00
|
|
|
|
2010-03-25 18:04:27 -04: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 13:02:23 -05:00
|
|
|
|
|
|
|
</div><!-- #content -->
|
2010-02-07 11:16:26 -05:00
|
|
|
</div><!-- #container -->
|
2010-02-08 13:02:23 -05:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2010-03-16 16:17:22 -04:00
|
|
|
<?php get_footer(); ?>
|