forked from stejmurphy/mozirelandtheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
68 lines (53 loc) · 2.86 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
<?php
// Count search results
global $wp_query;
$total_results = $wp_query->found_posts;
get_header(); ?>
<div id="content-main" class="main" role="main">
<?php if ( have_posts() ) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<h1 class="page-title">
<?php if (is_category()) : ?><?php printf(__('Archive for %s','onemozilla'), single_cat_title()); ?>
<?php elseif (is_tag()) : ?><?php printf(__('Posts tagged with “%s”','onemozilla'), single_tag_title()); ?>
<?php elseif (is_day()) : ?><?php printf(__('Posts from %s', 'onemozilla'), get_the_date()); ?>
<?php elseif (is_month()) : ?><?php printf(__('Posts from %s', 'onemozilla'), get_the_date('F, Y')); ?>
<?php elseif (is_year()) : ?><?php printf(__('Posts from %s', 'onemozilla'), get_the_date('Y')); ?>
<?php elseif (is_author()) : ?><?php printf(__('Posts by %s','onemozilla'), esc_html(get_userdata(intval($author))->display_name) ); ?></span>
<?php elseif (is_search()) : ?><?php printf( _n('We found one result for “%2$s”', 'We found %1$s results for “%2$s”', $total_results, 'onemozilla'), $total_results, esc_html(get_search_query()) ); ?>
<?php else : ?><?php _e('Archives','onemozilla'); ?>
<?php endif; ?>
</h1>
<?php if (fc_show_posts_nav()) : ?>
<nav class="nav-paging top">
<ul role="navigation">
<?php if ( $paged < $wp_query->max_num_pages ) : ?><li class="prev"><?php next_posts_link(__('Older posts','onemozilla')); ?></li><?php endif; ?>
<?php if ( $paged > 1 ) : ?><li class="next"><?php previous_posts_link(__('Newer posts','onemozilla')); ?></li><?php endif; ?>
</ul>
</nav>
<?php endif; ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'summary' ); ?>
<?php endwhile; ?>
<?php if (fc_show_posts_nav()) : ?>
<nav class="nav-paging bottom">
<ul role="navigation">
<?php if ( $paged < $wp_query->max_num_pages ) : ?><li class="prev"><?php next_posts_link(__('Older posts','onemozilla')); ?></li><?php endif; ?>
<?php if ( $paged > 1 ) : ?><li class="next"><?php previous_posts_link(__('Newer posts','onemozilla')); ?></li><?php endif; ?>
</ul>
</nav>
<?php endif; ?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Nothing Found', 'onemozilla' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'onemozilla' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
<?php endif; ?>
</div><!-- #content-main -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>