-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag.php
48 lines (41 loc) · 1.42 KB
/
tag.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
<?php get_header(); ?>
<div class="section site-body">
<div class="section-inner">
<h1><?php printf( __( 'Tag Archives: %s', 'twentyten' ), '<span>' . single_tag_title( '', false ) . '</span>' ); ?></h1>
<!-- displays the tag's description from the Wordpress admin -->
<?php echo tag_description(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php echo '<div class="featured-thumbnail">'; the_post_thumbnail(); echo '</div>'; ?>
<div class="post-excerpt">
<?php the_excerpt(); ?>
</div>
<?php get_template_part('partials/post-meta'); ?>
<?php endwhile; else: ?>
<div class="no-results">
<p>
<strong>There has been a glitch in the Matrix.</strong>
<br />
There is nothing to see here.
</p>
<p>
We apologize for any inconvenience, please try somewhere else.
</p>
</div><!--noResults-->
<?php endif; ?>
<div class="newer-older">
<div class="older">
<p>
<?php next_posts_link('« Older Entries') ?>
</p>
</div><!--.older-->
<div class="newer">
<p>
<?php previous_posts_link('Newer Entries »') ?>
</p>
</div><!--.older-->
</div><!--.newer-older-->
<?php get_sidebar(); ?>
</div>
</div><!--#content-->
<?php get_footer(); ?>