mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 10:50:56 +01:00
66be5edfb5
Built from https://develop.svn.wordpress.org/trunk@25743 git-svn-id: http://core.svn.wordpress.org/trunk@25656 1a063a9b-81f0-0310-95a4-ce76da25c4cd
65 lines
1.5 KiB
PHP
65 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* The template for displaying Author archive pages.
|
|
*
|
|
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Fourteen
|
|
*/
|
|
|
|
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
|
|
/* Queue the first post, that way we know what author
|
|
* 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(
|
|
'<span class="vcard"><a class="url fn n" href="%1$s" rel="me">%2$s</a></span>',
|
|
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
|
|
get_the_author()
|
|
) );
|
|
?>
|
|
</h1>
|
|
</header><!-- .archive-header -->
|
|
|
|
<?php
|
|
/* 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();
|
|
|
|
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();
|