Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
<?php
/*
* The template used to display Tag Archive pages
*/
get_header
(); ?>
<div id="content">
<?php if (have_posts
()) : ?>
<header id="search-header">
<h1 id="search-title">
<?php printf(__
('Tag Archives: %s', 'sdt'), single_tag_title
('', false)); ?></h1>
<?php
$tag_description = tag_description
();
if (!empty($tag_description))
echo apply_filters
( 'tag_archive_meta', '<div class="tag-archive-meta">'.$tag_description.'</div>');
?>
</header>
<?php sdt_content_nav
('nav-above'); ?>
<?php /* Start the Loop */ ?>
<?php while (have_posts
()) : the_post
(); ?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to overload this in a child theme then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part
('content', false);
?>
<?php endwhile; ?>
<?php sdt_content_nav
('nav-below'); ?>
<?php else : ?>
<div>
<header id="search-header">
<h1 id="search-title">
<?php _e
( 'Nothing Found', 'sdt' ); ?></h1>
</header><!-- .entry-header -->
<div id="search-content">
<p>
<?php _e
( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'sdt' ); ?></p>
<?php get_search_form
(); ?>
</div><!-- #search-content -->
</div>
<?php endif; ?>
</div><!-- #content -->
<?php get_sidebar
(); ?>
<?php get_footer
(); ?>