mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-09 04:11:10 +01:00
427a92a0d4
git-svn-id: http://svn.automattic.com/wordpress/trunk@17819 1a063a9b-81f0-0310-95a4-ce76da25c4cd
44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* The template for displaying Category Archive pages.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty Eleven
|
|
* @since Twenty Eleven 1.0
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
<section id="primary">
|
|
<div id="content" role="main">
|
|
|
|
<header class="page-header">
|
|
<h1 class="page-title"><?php
|
|
printf( __( 'Category Archives: %s', 'twentyeleven' ), '<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 twentyeleven_content_nav( 'nav-above' ); ?>
|
|
|
|
<?php /* Start the Loop */ ?>
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
|
|
<?php
|
|
/* Include the Post-Format-specific template for the content.
|
|
* If you want to overload this in a child theme then include a file
|
|
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
|
|
*/
|
|
get_template_part( 'content', get_post_format() );
|
|
?>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php twentyeleven_content_nav( 'nav-below' ); ?>
|
|
|
|
</div><!-- #content -->
|
|
</section><!-- #primary -->
|
|
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|