????
| Current Path : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/blog/media/ |
| Current File : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/blog/media/blog-single-video.php |
<?php
/**
* Blog single post video format media
*
* @package Wanderfuls WordPress theme
* @subpackage Partials
* @version 3.0.0
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Get post video
$video = tb_get_post_video_html();
// Show featured image for password-protected post or if video isn't defined
if ( post_password_required() || ! $video ) {
get_template_part( 'partials/blog/media/blog-single', 'thumbnail' );
return;
} ?>
<div id="post-media" class="clr">
<div id="blog-post-video">
<?php echo $video; ?>
</div><!-- #blog-post-video -->
</div><!-- #post-media -->