if ( is_category() ) :
single_cat_title();
elseif ( is_tag() ) :
single_tag_title();
elseif ( is_author() ) :
*/
the_post();
printf( __( 'Author: %s', 'sixteen' ), '' . get_the_author() . '' );
rewind_posts();
elseif ( is_day() ) :
printf( __( 'Day: %s', 'sixteen' ), '' . get_the_date() . '' );
elseif ( is_month() ) :
printf( __( 'Month: %s', 'sixteen' ), '' . get_the_date( 'F Y' ) . '' );
elseif ( is_year() ) :
printf( __( 'Year: %s', 'sixteen' ), '' . get_the_date( 'Y' ) . '' );
elseif ( is_tax( 'post_format', 'post-format-aside' ) ) :
_e( 'Asides', 'sixteen' );
elseif ( is_tax( 'post_format', 'post-format-image' ) ) :
_e( 'Images', 'sixteen');
elseif ( is_tax( 'post_format', 'post-format-video' ) ) :
_e( 'Videos', 'sixteen' );
elseif ( is_tax( 'post_format', 'post-format-quote' ) ) :
_e( 'Quotes', 'sixteen' );
elseif ( is_tax( 'post_format', 'post-format-link' ) ) :
_e( 'Links', 'sixteen' );
else :
_e( 'Archives', 'sixteen' );
endif;
?>
$term_description = term_description();
if ( ! empty( $term_description ) ) :
printf( '
endif;
?>
if (has_post_thumbnail()) {
echo "";
the_post_thumbnail();
echo "";
}
get_template_part( 'content', get_post_format() );
?>