2012-09-27 09:01:16 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-20 21:24:09 +02:00
|
|
|
* The template for displaying Category pages
|
2012-09-27 09:01:16 +02:00
|
|
|
*
|
|
|
|
* Used to display archive-type pages for posts in a category.
|
|
|
|
*
|
2019-01-09 06:09:51 +01:00
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
2012-09-27 09:01:16 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Twelve
|
|
|
|
* @since Twenty Twelve 1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<section id="primary" class="site-content">
|
|
|
|
<div id="content" role="main">
|
|
|
|
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
<header class="archive-header">
|
2019-07-09 03:10:00 +02:00
|
|
|
<h1 class="archive-title">
|
|
|
|
<?php
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Category title. */
|
2019-07-09 03:10:00 +02:00
|
|
|
printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' );
|
|
|
|
?>
|
|
|
|
</h1>
|
2012-09-27 09:01:16 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
<?php if ( category_description() ) : // Show an optional category description. ?>
|
2012-09-27 09:01:16 +02:00
|
|
|
<div class="archive-meta"><?php echo category_description(); ?></div>
|
|
|
|
<?php endif; ?>
|
|
|
|
</header><!-- .archive-header -->
|
|
|
|
|
|
|
|
<?php
|
2020-01-29 01:45:18 +01:00
|
|
|
// Start the Loop.
|
2017-12-01 00:11:00 +01:00
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
2012-09-27 09:01:16 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
/*
|
|
|
|
* Include the post format-specific template for the content. If you want
|
|
|
|
* to use this in a child theme then include a file called content-___.php
|
2012-09-27 09:01:16 +02:00
|
|
|
* (where ___ is the post format) and that will be used instead.
|
|
|
|
*/
|
|
|
|
get_template_part( 'content', get_post_format() );
|
|
|
|
|
|
|
|
endwhile;
|
|
|
|
|
|
|
|
twentytwelve_content_nav( 'nav-below' );
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php else : ?>
|
|
|
|
<?php get_template_part( 'content', 'none' ); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
</div><!-- #content -->
|
|
|
|
</section><!-- #primary -->
|
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2015-04-12 23:29:32 +02:00
|
|
|
<?php get_footer(); ?>
|