File "thumbnail.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/themes/kapee222/template-parts/single-post/thumbnail.php
File size: 581 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Displays the post entry image / gallery / audio / video etc. As per the post format.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @author 	PressLayouts
 * @package kapee/template-parts/single-post
 * @since 1.0
 */

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

if ( ! kapee_get_option( 'single-post-thumbnail', 1 ) ) {
	return;
}

if( has_post_thumbnail() ){ ?>
	<div class="post-thumbnail">
		<?php echo kapee_get_post_thumbnail('full'); // PHPCS:Ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
	</div>
<?php }