mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-25 02:27:50 +01:00
067e66c8f6
Use in twentyten for loop.php including. See #9015. git-svn-id: http://svn.automattic.com/wordpress/trunk@13146 1a063a9b-81f0-0310-95a4-ce76da25c4cd
26 lines
849 B
PHP
26 lines
849 B
PHP
<?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 get_generic_template( 'loop', 'archive' ); ?>
|
|
|
|
</div><!-- #content -->
|
|
</div><!-- #container -->
|
|
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|