-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
executable file
·37 lines (26 loc) · 998 Bytes
/
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
<?php get_header(); ?>
<div class="row">
<!-- Section -->
<section class="span8">
<div class="main">
<div class="section"><h1><?php _e( 'Archives', 'spritz' ); ?> <small>
<?php if ( is_day() ) : ?>
<?php printf( __( 'Daily Archives: %s', 'spritz' ), '<span>' . get_the_date() . '</span>' ); ?>
<?php elseif ( is_month() ) : ?>
<?php printf( __( 'Monthly Archives: %s', 'spritz' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'spritz' ) ) . '</span>' ); ?>
<?php elseif ( is_year() ) : ?>
<?php printf( __( 'Yearly Archives: %s', 'spritz' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'spritz' ) ) . '</span>' ); ?>
<?php endif; ?>
</small></h1></div>
<?php get_template_part('loop'); ?>
<!-- Pagination -->
<div id="pagination">
<?php spritz_pagination(); ?>
</div>
<!-- /Pagination -->
</div>
</section>
<!-- /Section -->
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>