' . single_cat_title( '', false ) . '' ); } elseif ( is_tag() ) { printf( __( 'Tag %s', 'spun' ), '' . single_tag_title( '', false ) . '' ); } elseif ( is_author() ) { /* Queue the first post, that way we know * what author we're dealing with (if that is the case). */ the_post(); printf( __( 'Author %s', 'spun' ), '' . get_the_author() . '' ); /* 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() ) { printf( __( 'Day %s', 'spun' ), '' . get_the_date() . '' ); } elseif ( is_month() ) { printf( __( 'Month %s', 'spun' ), '' . get_the_date( 'F Y' ) . '' ); } elseif ( is_year() ) { printf( __( 'Year %s', 'spun' ), '' . get_the_date( 'Y' ) . '' ); } elseif ( get_post_format() ) { printf( __( 'Post Format %s', 'spun' ), '' . get_post_format_string( get_post_format() ) . '' ); } else { _e( 'Archives', 'spun' ); } ?>