>
';
the_post_thumbnail( 'timepiece-featured-thumbnail' );
echo '';
} else {
$format = get_post_format();
if ( false === $format ) {
$format = 'standard';
}
if ( 'gallery' == $format || 'image' == $format ) {
$args = array(
'post_parent' => get_the_ID(),
'post_type' => 'attachment',
'post_status' => 'inherit',
'suppress_filters' => 'false',
'numberposts' => 1,
);
$attach_id = get_posts( $args );
if ( ! empty( $attach_id ) )
echo '
' . wp_get_attachment_image( $attach_id[ 0 ]->ID, 'timepiece-featured-thumbnail' ) . '';
} else if ( 'standard' == $format )
the_excerpt();
else
the_content();
}
?>