';
if ( hybrid_media_grabber() ) {
echo hybrid_media_grabber(
array(
'type' => 'video',
)
);
} else {
the_excerpt();
}
echo '
';
} elseif ( ! is_single() && has_post_format( 'audio' ) ) {
echo '';
if ( hybrid_media_grabber() ) {
echo hybrid_media_grabber(
array(
'type' => 'audio',
)
);
} else {
the_excerpt();
}
echo '
';
} else {
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
echo '';
the_content();
wp_link_pages(
array(
'before' => '
' . esc_html__( 'Pages:', 'deejay' ),
'after' => '
',
)
);
echo '
';
} // End if().
?>
__( 'Previous', 'deejay' ),
'next_text' => __( 'Next', 'deejay' ),
)
);
}
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
endwhile;
} // End if().
?>