-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
79 lines (73 loc) · 3.09 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
<?php get_header(); ?>
<?php $options = get_option('inove_options'); ?>
<?php if (is_search()) : ?>
<div class="boxcaption"><h3><?php _e('Search Results', 'inove'); ?></h3></div>
<div class="box"><?php printf( __('Keyword: ‘%1$s’', 'inove'), wp_specialchars($s, 1) ); ?></div>
<?php else : ?>
<div class="boxcaption"><h3><?php _e('Archive', 'inove'); ?></h3></div>
<div class="box">
<?php
// If this is a category archive
if (is_category()) {
printf( __('Archive for the ‘%1$s’ Category', 'inove'), single_cat_title('', false) );
// If this is a tag archive
} elseif(is_tag()) {
printf( __('Posts Tagged ‘%1$s’', 'inove'), single_tag_title('', false) );
// If this is a daily archive
} elseif (is_day()) {
printf( __('Archive for %1$s', 'inove'), get_the_time(__('F jS, Y', 'inove')) );
// If this is a monthly archive
} elseif (is_month()) {
printf( __('Archive for %1$s', 'inove'), get_the_time(__('F, Y', 'inove')) );
// If this is a yearly archive
} elseif (is_year()) {
printf( __('Archive for %1$s', 'inove'), get_the_time(__('Y', 'inove')) );
// If this is an author archive
} elseif (is_author()) {
_e('Author Archive', 'inove');
// If this is a paged archive
} elseif (isset($_GET['paged']) && !empty($_GET['paged'])) {
_e('Blog Archives', 'inove');
}
?>
</div>
<?php endif; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); update_post_caches($posts); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a class="title" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="info">
<span class="date"><?php the_time(__('F jS, Y', 'inove')) ?></span>
<div class="act">
<span class="comments"><?php comments_popup_link(__('No comments', 'inove'), __('1 comment', 'inove'), __('% comments', 'inove')); ?></span>
<?php edit_post_link(__('Edit', 'inove'), '<span class="editpost">', '</span>'); ?>
<div class="fixed"></div>
</div>
<div class="fixed"></div>
</div>
<div class="content">
<?php the_content(__('Read more...', 'inove')); ?>
<p class="under">
<?php if ($options['author']) : ?><span class="author"><?php the_author_posts_link(); ?></span><?php endif; ?>
<?php if ($options['categories']) : ?><span class="categories"><?php the_category(', '); ?></span><?php endif; ?>
<?php if ($options['tags']) : ?><span class="tags"><?php the_tags('', ', ', ''); ?></span><?php endif; ?>
</p>
<div class="fixed"></div>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<div class="errorbox">
<?php _e('Sorry, no posts matched your criteria.', 'inove'); ?>
</div>
<?php endif; ?>
<div id="pagenavi">
<?php if(function_exists('wp_pagenavi')) : ?>
<?php wp_pagenavi() ?>
<?php else : ?>
<span class="newer"><?php previous_posts_link(__('Newer Entries', 'inove')); ?></span>
<span class="older"><?php next_posts_link(__('Older Entries', 'inove')); ?></span>
<?php endif; ?>
<div class="fixed"></div>
</div>
<?php get_footer(); ?>