|
1 <?php |
|
2 /** |
|
3 * The template for displaying Archive pages |
|
4 * |
|
5 * Used to display archive-type pages if nothing more specific matches a query. |
|
6 * For example, puts together date-based pages if no date.php file exists. |
|
7 * |
|
8 * If you'd like to further customize these archive views, you may create a |
|
9 * new template file for each specific one. For example, Twenty Thirteen |
|
10 * already has tag.php for Tag archives, category.php for Category archives, |
|
11 * and author.php for Author archives. |
|
12 * |
|
13 * @link http://codex.wordpress.org/Template_Hierarchy |
|
14 * |
|
15 * @package WordPress |
|
16 * @subpackage Twenty_Thirteen |
|
17 * @since Twenty Thirteen 1.0 |
|
18 */ |
|
19 |
|
20 get_header(); ?> |
|
21 |
|
22 <div id="primary" class="content-area"> |
|
23 <div id="content" class="site-content" role="main"> |
|
24 |
|
25 <?php if ( have_posts() ) : ?> |
|
26 <header class="archive-header"> |
|
27 <h1 class="archive-title"><?php |
|
28 if ( is_day() ) : |
|
29 printf( __( 'Daily Archives: %s', 'twentythirteen' ), get_the_date() ); |
|
30 elseif ( is_month() ) : |
|
31 printf( __( 'Monthly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentythirteen' ) ) ); |
|
32 elseif ( is_year() ) : |
|
33 printf( __( 'Yearly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentythirteen' ) ) ); |
|
34 else : |
|
35 _e( 'Archives', 'twentythirteen' ); |
|
36 endif; |
|
37 ?></h1> |
|
38 </header><!-- .archive-header --> |
|
39 |
|
40 <?php /* The loop */ ?> |
|
41 <?php while ( have_posts() ) : the_post(); ?> |
|
42 <?php get_template_part( 'content', get_post_format() ); ?> |
|
43 <?php endwhile; ?> |
|
44 |
|
45 <?php twentythirteen_paging_nav(); ?> |
|
46 |
|
47 <?php else : ?> |
|
48 <?php get_template_part( 'content', 'none' ); ?> |
|
49 <?php endif; ?> |
|
50 |
|
51 </div><!-- #content --> |
|
52 </div><!-- #primary --> |
|
53 |
|
54 <?php get_sidebar(); ?> |
|
55 <?php get_footer(); ?> |