2010-03-30 00:03:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 19:04:10 +02:00
|
|
|
* Template for displaying Archive pages
|
2010-03-30 00:03:15 +02:00
|
|
|
*
|
|
|
|
* Used to display archive-type pages if nothing more specific matches a query.
|
|
|
|
* For example, puts together date-based pages if no date.php file exists.
|
|
|
|
*
|
2013-09-25 19:04:10 +02:00
|
|
|
* @link http://codex.wordpress.org/Template_Hierarchy
|
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
|
|
|
|
2010-05-17 08:36:11 +02:00
|
|
|
<?php
|
2013-09-25 19:04:10 +02:00
|
|
|
/**
|
|
|
|
* Queue the first post, that way we know
|
2010-05-17 08:36:11 +02:00
|
|
|
* what date we're dealing with (if that is the case).
|
|
|
|
*
|
|
|
|
* We reset this later so we can run the loop
|
|
|
|
* properly with a call to rewind_posts().
|
|
|
|
*/
|
2010-05-24 10:33:51 +02:00
|
|
|
if ( have_posts() )
|
|
|
|
the_post();
|
2010-05-17 08:36:11 +02:00
|
|
|
?>
|
2010-02-08 19:02:23 +01:00
|
|
|
|
2010-05-10 22:30:58 +02:00
|
|
|
<h1 class="page-title">
|
2010-02-07 17:16:26 +01:00
|
|
|
<?php if ( is_day() ) : ?>
|
2010-05-10 22:30:58 +02:00
|
|
|
<?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?>
|
2010-02-07 17:16:26 +01:00
|
|
|
<?php elseif ( is_month() ) : ?>
|
2011-11-10 19:37:20 +01:00
|
|
|
<?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyten' ) ) ); ?>
|
2010-02-07 17:16:26 +01:00
|
|
|
<?php elseif ( is_year() ) : ?>
|
2011-11-10 19:37:20 +01:00
|
|
|
<?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyten' ) ) ); ?>
|
2010-02-14 08:13:34 +01:00
|
|
|
<?php else : ?>
|
2010-05-10 22:30:58 +02:00
|
|
|
<?php _e( 'Blog Archives', 'twentyten' ); ?>
|
2010-02-07 17:16:26 +01:00
|
|
|
<?php endif; ?>
|
2010-05-10 22:30:58 +02:00
|
|
|
</h1>
|
2010-05-17 08:36:11 +02:00
|
|
|
|
2010-03-25 23:04:27 +01:00
|
|
|
<?php
|
2013-09-25 19:04:10 +02:00
|
|
|
/**
|
|
|
|
* Since we called the_post() above, we need to
|
2010-05-17 08:36:11 +02:00
|
|
|
* rewind the loop back to the beginning that way
|
|
|
|
* we can run the loop properly, in full.
|
|
|
|
*/
|
|
|
|
rewind_posts();
|
|
|
|
|
2013-09-25 19:04:10 +02:00
|
|
|
/**
|
|
|
|
* Run the loop for the archives 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
|
2010-12-05 03:18:07 +01:00
|
|
|
* called loop-archive.php and that will be used instead.
|
2010-03-25 23:04:27 +01:00
|
|
|
*/
|
|
|
|
get_template_part( 'loop', 'archive' );
|
|
|
|
?>
|
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(); ?>
|