2010-03-29 18:03:15 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2010-05-17 02:32:03 -04:00
|
|
|
* The template for displaying Author Archive pages.
|
2010-03-29 18:03:15 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 13:10:21 -04:00
|
|
|
* @subpackage Twenty_Ten
|
2010-05-17 02:36:11 -04:00
|
|
|
* @since Twenty Ten 1.0
|
2010-03-29 18:03:15 -04:00
|
|
|
*/
|
|
|
|
|
2010-06-11 12:55:41 -04:00
|
|
|
get_header(); ?>
|
2010-02-08 13:02:23 -05:00
|
|
|
|
|
|
|
<div id="container">
|
2010-05-10 17:10:12 -04:00
|
|
|
<div id="content" role="main">
|
2010-02-08 13:02:23 -05:00
|
|
|
|
2010-05-17 02:36:11 -04:00
|
|
|
<?php
|
|
|
|
/* Queue the first post, that way we know who
|
|
|
|
* the author is when we try to get their name,
|
|
|
|
* URL, description, avatar, etc.
|
|
|
|
*
|
|
|
|
* We reset this later so we can run the loop
|
|
|
|
* properly with a call to rewind_posts().
|
|
|
|
*/
|
2010-05-24 04:40:02 -04:00
|
|
|
if ( have_posts() )
|
|
|
|
the_post();
|
2010-05-17 02:36:11 -04:00
|
|
|
?>
|
2010-02-08 13:02:23 -05:00
|
|
|
|
2010-05-10 01:28:01 -04:00
|
|
|
<h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'twentyten' ), "<span class='vcard'><a class='url fn n' href='" . get_author_posts_url( get_the_author_meta( 'ID' ) ) . "' title='" . esc_attr( get_the_author() ) . "' rel='me'>" . get_the_author() . "</a></span>" ); ?></h1>
|
2010-02-07 11:16:26 -05:00
|
|
|
|
2010-05-17 02:36:11 -04:00
|
|
|
<?php
|
|
|
|
// If a user has filled out their description, show a bio on their entries.
|
|
|
|
if ( get_the_author_meta( 'description' ) ) : ?>
|
2010-02-07 11:16:26 -05:00
|
|
|
<div id="entry-author-info">
|
|
|
|
<div id="author-avatar">
|
2010-03-16 16:17:22 -04:00
|
|
|
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?>
|
2010-05-21 14:56:27 -04:00
|
|
|
</div><!-- #author-avatar -->
|
2010-02-07 11:16:26 -05:00
|
|
|
<div id="author-description">
|
2010-03-16 16:17:22 -04:00
|
|
|
<h2><?php printf( __( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
|
|
|
|
<?php the_author_meta( 'description' ); ?>
|
2010-02-07 11:16:26 -05:00
|
|
|
</div><!-- #author-description -->
|
2010-05-21 14:56:27 -04:00
|
|
|
</div><!-- #entry-author-info -->
|
2010-02-07 11:16:26 -05:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2010-03-25 18:04:27 -04:00
|
|
|
<?php
|
2010-05-17 02:36:11 -04:00
|
|
|
/* Since we called the_post() above, we need to
|
|
|
|
* rewind the loop back to the beginning that way
|
|
|
|
* we can run the loop properly, in full.
|
|
|
|
*/
|
|
|
|
rewind_posts();
|
|
|
|
|
2010-03-25 18:04:27 -04:00
|
|
|
/* Run the loop for the author archive page to output the authors posts
|
|
|
|
* If you want to overload this in a child theme then include a file
|
|
|
|
* called loop-author.php and that will be used instead.
|
|
|
|
*/
|
|
|
|
get_template_part( 'loop', 'author' );
|
|
|
|
?>
|
2010-02-08 13:02:23 -05:00
|
|
|
</div><!-- #content -->
|
2010-02-07 11:16:26 -05:00
|
|
|
</div><!-- #container -->
|
2010-02-08 13:02:23 -05:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2010-03-16 16:17:22 -04:00
|
|
|
<?php get_footer(); ?>
|