-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
52 lines (44 loc) · 1.36 KB
/
archive.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
* The template for displaying 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
*
* Please see /external/starkers-utilities.php for info on Starkers_Utilities::get_template_parts()
*
* @package WordPress
* @subpackage Starkers
* @since Starkers 4.0
*/
?>
<?php Starkers_Utilities::get_template_parts( array( 'header' ) ); ?>
<div class="container">
<?php if ( have_posts() ): ?>
<?php if ( is_day() ) : ?>
<h1>Archive: <?php echo get_the_date( 'D M Y' ); ?></h1>
<?php elseif ( is_month() ) : ?>
<h1>Archive: <?php echo get_the_date( 'M Y' ); ?></h1>
<?php elseif ( is_year() ) : ?>
<h1>Archive: <?php echo get_the_date( 'Y' ); ?></h1>
<?php else : ?>
<h1>Archive</h1>
<?php endif; ?>
<ul>
<?php while ( have_posts() ) : the_post(); ?>
<li>
<article>
<h2><a href="<?php esc_url( the_permalink() ); ?>" title="Permalink to <?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
</article>
</li>
<?php endwhile; ?>
</ul>
<?php else: ?>
<h2>No posts to display</h2>
<?php endif; ?>
<?php le_pagination(); ?>
</div>
<?php Starkers_Utilities::get_template_parts( array( 'footer' ) ); ?>