’;
echo the_title();
echo ‘
’;
echo the_content();
}
elseif ( has_post_format( ‘gallery’ )) {
echo ‘
’;
echo the_title();
echo ‘
’;
echo the_content();
}
elseif ( has_post_format( ‘image’ )) {
echo ‘
’; echo the_title(); echo ‘
’; echo the_post_thumbnail(‘image-format’); echo the_content();}
elseif ( has_post_format( ‘link’ )) {
echo ‘
’; echo the_title(); echo ‘
’; echo the_content();}
elseif ( has_post_format( ‘quote’ )) {
echo the_content();}
elseif ( has_post_format( ‘status’ )) {
echo the_content();}
elseif ( has_post_format( ‘video’ )) {
echo ‘
’; echo the_title(); echo ‘
’; echo the_content();}
elseif ( has_post_format( ‘audio’ )) {
echo ‘
’; echo the_title(); echo ‘
’; echo the_content();}
else {
echo ‘
’; echo the_title(); echo ‘
’; echo the_content();}
?>