????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls/partials/blog/media/
Upload File :
Current File : /home2/morganrand/www/wp-content/themes/wanderfuls/partials/blog/media/blog-single-audio.php

<?php
/**
 * Blog single post audio format media
 *
 * @package Wanderfuls WordPress theme
 * @subpackage Partials
 * @version 3.0.0
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Get audio html
$audio = tb_get_post_audio_html();

// Display audio if audio exists and the post isn't protected
if ( $audio && ! post_password_required()  ) : ?>

	<div id="post-media" class="clr">

		<div class="blog-post-audio clr">

			<?php echo $audio; ?>

		</div><!-- .blog-post-audio -->

	</div><!-- #post-media -->

<?php
// Otherwise get post thumbnail
else : ?>

	<?php get_template_part( 'partials/blog/media/blog-single-thumbnail' ); ?>

<?php endif; ?>