Merge pull request #64 from kovshenin/patch-7

Revert "Merge pull request #36 from kovshenin/patch-5" This will better match core practices for default themes as well as restore functionality of the 'the_author' filter. props @kovshenin
This commit is contained in:
Michael Fields 2012-08-30 23:20:20 -07:00
commit 7fef5cd2ec
1 changed files with 10 additions and 3 deletions

View File

@ -25,9 +25,16 @@ get_header(); ?>
printf( __( 'Tag Archives: %s', '_s' ), '<span>' . single_tag_title( '', false ) . '</span>' ); printf( __( 'Tag Archives: %s', '_s' ), '<span>' . single_tag_title( '', false ) . '</span>' );
} elseif ( is_author() ) { } elseif ( is_author() ) {
// Get the queried author data. /* Queue the first post, that way we know
$author = get_queried_object(); * what author we're dealing with (if that is the case).
printf( __( 'Author Archives: %s', '_s' ), '<span class="vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( $author->ID ) ) . '" title="' . esc_attr( $author->display_name ) . '" rel="me">' . esc_html( $author->display_name ) . '</a></span>' ); */
the_post();
printf( __( 'Author Archives: %s', '_s' ), '<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>' );
/* 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();
} elseif ( is_day() ) { } elseif ( is_day() ) {
printf( __( 'Daily Archives: %s', '_s' ), '<span>' . get_the_date() . '</span>' ); printf( __( 'Daily Archives: %s', '_s' ), '<span>' . get_the_date() . '</span>' );