62 lines
1.1 KiB
PHP
62 lines
1.1 KiB
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, true ) ) {
|
|
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 wp_kses_post( $caption ); ?>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
</div><!-- .thumbnail -->
|