mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-09 04:11:10 +01:00
a4c7fb5869
git-svn-id: http://svn.automattic.com/wordpress/trunk@13885 1a063a9b-81f0-0310-95a4-ce76da25c4cd
47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Generic template for Archive pages.
|
|
*
|
|
* 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.
|
|
*
|
|
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty Ten
|
|
* @since 3.0.0
|
|
*/
|
|
?>
|
|
|
|
<?php get_header(); ?>
|
|
|
|
<div id="container">
|
|
<div id="content">
|
|
|
|
<?php the_post(); ?>
|
|
|
|
<?php if ( is_day() ) : ?>
|
|
<h1 class="page-title"><?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?></h1>
|
|
<?php elseif ( is_month() ) : ?>
|
|
<h1 class="page-title"><?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date('F Y') ); ?></h1>
|
|
<?php elseif ( is_year() ) : ?>
|
|
<h1 class="page-title"><?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date('Y') ); ?></h1>
|
|
<?php else : ?>
|
|
<h1 class="page-title"><?php _e( 'Blog Archives', 'twentyten' ); ?></h1>
|
|
<?php endif; ?>
|
|
|
|
<?php rewind_posts(); ?>
|
|
<?php
|
|
/* Run the loop for the archives page to output the posts.
|
|
* If you want to overload this in a child theme then include a file
|
|
* called loop-archives.php and that will be used instead.
|
|
*/
|
|
get_template_part( 'loop', 'archive' );
|
|
?>
|
|
|
|
</div><!-- #content -->
|
|
</div><!-- #container -->
|
|
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|