File: /home/www/web115/wordpress/wp-content/themes/osmosis/content-audio.php
<?php
/**
* The Audio Post Type Template
*/
?>
<?php
if ( is_singular() ) {
$grve_disable_media = grve_post_meta( 'grve_disable_media' );
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'grve-single-post' ); ?> itemscope itemType="http://schema.org/BlogPosting">
<?php
if ( 'yes' != $grve_disable_media && !post_password_required() ) {
?>
<div id="grve-single-media">
<?php grve_print_post_audio(); ?>
</div>
<?php
}
?>
<div id="grve-post-content">
<?php grve_print_post_header_title( 'content' ); ?>
<?php osmosis_grve_print_post_structured_data(); ?>
<?php grve_print_post_single_meta(); ?>
<div itemprop="articleBody">
<?php the_content(); ?>
</div>
</div>
</article>
<?php
} else {
$grve_post_class = grve_get_post_class();
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( $grve_post_class ); ?> itemscope itemType="http://schema.org/BlogPosting">
<?php do_action( 'grve_inner_post_loop_item_before' ); ?>
<?php grve_print_post_feature_media( 'audio' ); ?>
<div class="grve-post-content">
<?php do_action( 'grve_inner_post_loop_item_title_link' ); ?>
<?php osmosis_grve_print_post_structured_data(); ?>
<div class="grve-post-meta">
<?php grve_print_post_author_by(); ?>
<?php grve_print_post_date(); ?>
<?php grve_print_post_comments(); ?>
<?php grve_print_like_counter(); ?>
</div>
<div itemprop="articleBody">
<?php grve_print_post_excerpt(); ?>
</div>
</div>
<?php do_action( 'grve_inner_post_loop_item_after' ); ?>
</article>
<?php
}
//Omit closing PHP tag to avoid accidental whitespace output errors.