-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
93 lines (57 loc) · 2.75 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php get_header(); ?>
<div class="wrapper section-inner">
<?php require('ad-top.php'); ?>
<div class="content left">
<div class="posts">
<div class="page-title">
<h4><?php if ( is_day() ) : ?>
<?php printf( __( 'Date: %s', 'hemingway' ), '' . get_the_date() . '' ); ?>
<?php elseif ( is_month() ) : ?>
<?php printf( __( 'Month: %s', 'hemingway' ), '' . get_the_date( _x( 'F Y', 'F = Month, Y = Year', 'hemingway' ) ) ); ?>
<?php elseif ( is_year() ) : ?>
<?php printf( __( 'Year: %s', 'hemingway' ), '' . get_the_date( _x( 'Y', 'Y = Year', 'hemingway' ) ) ); ?>
<?php elseif ( is_category() ) : ?>
<?php printf( __( 'Category: %s', 'hemingway' ), '' . single_cat_title( '', false ) . '' ); ?>
<?php elseif ( is_tag() ) : ?>
<?php printf( __( 'Tag: %s', 'hemingway' ), '' . single_tag_title( '', false ) . '' ); ?>
<?php elseif ( is_author() ) : ?>
<?php $curauth = (isset($_GET['author_name'])) ? get_user_by('slug', $author_name) : get_userdata(intval($author)); ?>
<?php printf( __( 'Author: %s', 'hemingway' ), $curauth->display_name ); ?>
<?php else : ?>
<?php _e( 'Archive', 'hemingway' ); ?>
<?php endif; ?>
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
if ( "1" < $wp_query->max_num_pages ) : ?>
<span><?php printf( __('(page %s of %s)', 'hemingway'), $paged, $wp_query->max_num_pages ); ?></span>
<?php endif; ?></h4>
<?php
$tag_description = tag_description();
if ( ! empty( $tag_description ) )
echo apply_filters( 'tag_archive_meta', '<div class="tag-archive-meta">' . $tag_description . '</div>' );
?>
</div> <!-- /page-title -->
<div class="clear"></div>
<?php if ( have_posts() ) : ?>
<?php rewind_posts(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php get_template_part( 'content', get_post_format() ); ?>
<div class="clear"></div>
</div> <!-- /post -->
<?php endwhile; ?>
</div> <!-- /posts -->
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
<div class="post-nav archive-nav">
<?php echo get_next_posts_link( __('Older<span> posts</span>', 'hemingway')); ?>
<?php echo get_previous_posts_link( __('Newer<span> posts</span>', 'hemingway')); ?>
<div class="clear"></div>
</div> <!-- /post-nav archive-nav -->
<div class="clear"></div>
<?php endif; ?>
<?php endif; ?>
</div> <!-- /content -->
<?php get_sidebar(); ?>
<div class="clear"></div>
</div> <!-- /wrapper -->
<?php get_footer(); ?>