????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/public_html/sub/wp-content/themes/oceanwp/partials/single/media/
Upload File :
Current File : /home2/morganrand/public_html/sub/wp-content/themes/oceanwp/partials/single/media/blog-single.php

<?php
/**
 * Displays the post single thumbmnail
 *
 * @package OceanWP WordPress theme
 */

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

// Return if there isn't a thumbnail defined
if ( ! has_post_thumbnail() ) {
	return;
}

// LLMS Integration
if( OCEANWP_LIFTERLMS_ACTIVE ) {
	$details = get_theme_mod( 'ocean_llms_course_details', array( 'image', 'description', 'meta', 'author', 'progress', 'syllabus' ) );

	if( is_course() && !in_array( 'image', $details) ) {
		return;
	}

	if( is_membership() && !( get_theme_mod( 'ocean_llms_membership_image', false ) ) ) {
		return;
	}
}

// Image args
$img_args = array(
    'alt' => get_the_title(),
);
if ( oceanwp_get_schema_markup( 'image' ) ) {
	$img_args['itemprop'] = 'image';
}

// Caption
$caption = get_the_post_thumbnail_caption(); ?>

<div class="thumbnail">

	<?php
	// Display post thumbnail
	the_post_thumbnail( 'full', $img_args );

	// Caption
	if ( $caption ) { ?>
		<div class="thumbnail-caption">
			<?php echo esc_attr( $caption ); ?>
		</div>
	<?php
	} ?>

</div><!-- .thumbnail -->