2010-03-29 22:03:15 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 17:04:10 +00:00
|
|
|
* Template for displaying Archive pages
|
2010-03-29 22:03:15 +00: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.
|
|
|
|
*
|
2019-01-09 05:09:51 +00:00
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
2010-03-29 22:03:15 +00:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 17:10:21 +00:00
|
|
|
* @subpackage Twenty_Ten
|
2010-05-17 06:36:11 +00:00
|
|
|
* @since Twenty Ten 1.0
|
2010-03-29 22:03:15 +00:00
|
|
|
*/
|
|
|
|
|
2010-06-11 16:55:41 +00:00
|
|
|
get_header(); ?>
|
2010-02-08 18:02:23 +00:00
|
|
|
|
|
|
|
<div id="container">
|
2010-05-10 21:10:12 +00:00
|
|
|
<div id="content" role="main">
|
2010-02-08 18:02:23 +00:00
|
|
|
|
2010-05-17 06:36:11 +00:00
|
|
|
<?php
|
2013-10-09 20:39:09 +00:00
|
|
|
/*
|
2013-09-25 17:04:10 +00:00
|
|
|
* Queue the first post, that way we know
|
2010-05-17 06:36:11 +00: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().
|
|
|
|
*/
|
2017-11-30 23:11:00 +00:00
|
|
|
if ( have_posts() ) {
|
|
|
|
the_post();
|
|
|
|
}
|
2010-05-17 06:36:11 +00:00
|
|
|
?>
|
2010-02-08 18:02:23 +00:00
|
|
|
|
2010-05-10 20:30:58 +00:00
|
|
|
<h1 class="page-title">
|
2019-07-09 01:10:00 +00:00
|
|
|
<?php
|
|
|
|
if ( is_day() ) {
|
2019-09-03 00:41:05 +00:00
|
|
|
/* translators: %s: Date. */
|
2019-07-09 01:10:00 +00:00
|
|
|
printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() );
|
|
|
|
} elseif ( is_month() ) {
|
2019-09-03 00:41:05 +00:00
|
|
|
/* translators: %s: Date. */
|
2019-07-09 01:10:00 +00:00
|
|
|
printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyten' ) ) );
|
|
|
|
} elseif ( is_year() ) {
|
2019-09-03 00:41:05 +00:00
|
|
|
/* translators: %s: Date. */
|
2019-07-09 01:10:00 +00:00
|
|
|
printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyten' ) ) );
|
|
|
|
} else {
|
|
|
|
_e( 'Blog Archives', 'twentyten' );
|
|
|
|
}
|
|
|
|
?>
|
2010-05-10 20:30:58 +00:00
|
|
|
</h1>
|
2010-05-17 06:36:11 +00:00
|
|
|
|
2010-03-25 22:04:27 +00:00
|
|
|
<?php
|
2013-10-09 20:39:09 +00:00
|
|
|
/*
|
2020-01-29 00:45:18 +00:00
|
|
|
* Since we called the_post() above, we need
|
|
|
|
* to rewind the loop back to the beginning.
|
|
|
|
* That way we can run the loop properly, in full.
|
2010-05-17 06:36:11 +00:00
|
|
|
*/
|
|
|
|
rewind_posts();
|
|
|
|
|
2013-10-09 20:39:09 +00:00
|
|
|
/*
|
2013-09-25 17:04:10 +00:00
|
|
|
* Run the loop for the archives page to output the posts.
|
2010-03-25 22:04:27 +00:00
|
|
|
* If you want to overload this in a child theme then include a file
|
2010-12-05 02:18:07 +00:00
|
|
|
* called loop-archive.php and that will be used instead.
|
2010-03-25 22:04:27 +00:00
|
|
|
*/
|
2015-01-22 00:42:44 +00:00
|
|
|
get_template_part( 'loop', 'archive' );
|
2010-03-25 22:04:27 +00:00
|
|
|
?>
|
2010-02-08 18:02:23 +00:00
|
|
|
|
|
|
|
</div><!-- #content -->
|
2010-02-07 16:16:26 +00:00
|
|
|
</div><!-- #container -->
|
2010-02-08 18:02:23 +00:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2010-03-16 20:17:22 +00:00
|
|
|
<?php get_footer(); ?>
|