(root)/author.php - Rev 5
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
<?php
/*
* The template for displaying Author Archive pages.
*/
get_header
(); ?>
<div id="content">
<?php if (have_posts
()) : the_post
(); ?>
<header id="search-header">
<h1 id="search-title">
<?php printf(__
('Author Archives: %s', 'sdt'), get_the_author
()); ?></h1>
<?php
if (get_the_author_meta
('description')) : ?>
<div class="author-archive-meta"><p>
<?php _e
('About the author:', 'sdt'); echo ' '; the_author_meta
('description'); ?></p></div>
<?php endif; ?>
</header>
<?php sdt_content_nav
('nav-above'); ?>
<?php
//Reset the loop
rewind_posts
();
/* 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
(); ?>