2013-09-02 23:21:09 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-10-12 00:02:11 +02:00
|
|
|
* The template for displaying Author archive pages
|
2013-09-02 23:21:09 +02:00
|
|
|
*
|
2013-10-12 00:02:11 +02:00
|
|
|
* @link http://codex.wordpress.org/Template_Hierarchy
|
2013-09-02 23:21:09 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
2013-10-12 00:02:11 +02:00
|
|
|
* @since Twenty Fourteen 1.0
|
2013-09-02 23:21:09 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<section id="primary" class="content-area">
|
|
|
|
<div id="content" class="site-content" role="main">
|
|
|
|
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
|
|
|
|
<header class="archive-header">
|
|
|
|
<h1 class="archive-title">
|
|
|
|
<?php
|
2013-10-12 00:02:11 +02:00
|
|
|
/*
|
|
|
|
* Queue the first post, that way we know what author
|
2013-09-02 23:21:09 +02:00
|
|
|
* we're dealing with (if that is the case).
|
|
|
|
*
|
|
|
|
* We reset this later so we can run the loop properly
|
|
|
|
* with a call to rewind_posts().
|
|
|
|
*/
|
|
|
|
the_post();
|
|
|
|
|
|
|
|
printf( __( 'All posts by %s', 'twentyfourteen' ), sprintf(
|
2013-10-09 21:07:09 +02:00
|
|
|
'<span class="vcard"><a class="url fn n" href="%1$s" rel="me">%2$s</a></span>',
|
2013-09-02 23:21:09 +02:00
|
|
|
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
|
|
|
|
get_the_author()
|
|
|
|
) );
|
|
|
|
?>
|
|
|
|
</h1>
|
|
|
|
</header><!-- .archive-header -->
|
|
|
|
|
|
|
|
<?php
|
2013-10-12 00:02:11 +02:00
|
|
|
/*
|
|
|
|
* Since we called the_post() above, we need to rewind
|
2013-09-02 23:21:09 +02:00
|
|
|
* the loop back to the beginning that way we can run
|
|
|
|
* the loop properly, in full.
|
|
|
|
*/
|
|
|
|
rewind_posts();
|
|
|
|
|
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
|
|
|
|
|
|
|
get_template_part( 'content', get_post_format() );
|
|
|
|
endwhile;
|
|
|
|
twentyfourteen_paging_nav();
|
|
|
|
|
|
|
|
else :
|
|
|
|
get_template_part( 'content', 'none' );
|
|
|
|
|
|
|
|
endif;
|
|
|
|
?>
|
|
|
|
|
|
|
|
</div><!-- #content -->
|
|
|
|
</section><!-- #primary -->
|
|
|
|
|
|
|
|
<?php
|
|
|
|
get_sidebar( 'content' );
|
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|