Skip to content

Instantly share code, notes, and snippets.

@tonyahowe
Created May 7, 2012 15:37
Show Gist options
  • Save tonyahowe/2628480 to your computer and use it in GitHub Desktop.
Save tonyahowe/2628480 to your computer and use it in GitHub Desktop.
Author Template
<?php get_header(); ?>
<?php if( brunelleschi_option('sidebar') === 'both'
|| brunelleschi_option('sidebar') === 'two left'
|| brunelleschi_option('sidebar') === 'two right'){
get_sidebar('secondary');
} ?>
<div id="main" role="main" class="<?php brunelleschi_content_class(); ?>">
<?php
if ( have_posts() )
the_post();
?>
<h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'brunelleschi' ), "<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>
<?php
if ( get_the_author_meta( 'description' ) ) : ?>
<div id="entry-author-info">
<div id="author-avatar">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'brunelleschi_author_bio_avatar_size', 60 ) ); ?>
</div><!-- #author-avatar -->
<div id="author-description">
<h2><?php printf( __( 'About %s', 'brunelleschi' ), get_the_author() ); ?></h2>
<?php the_author_meta( 'description' ); ?>
</div><!-- #author-description -->
</div><!-- #entry-author-info -->
<?php endif; ?>
<?php
rewind_posts();
get_template_part( 'loop', 'author' );
?>
</div><!-- #main -->
<?php if( brunelleschi_option('sidebar') === 'both'
|| brunelleschi_option('sidebar') === 'two left'
|| brunelleschi_option('sidebar') === 'two right'){
get_sidebar('secondary');
} ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment