File: //home/madepabj/gamepointpk.com/wp-content/themes/groovy/partials/single/style-fullcover.php
<?php
$post_id = get_the_ID();
$post_format = get_post_format();
$post_meta = get_post_meta( $post_id, 'epcl_post', true );
?>
<div class="fullcover-wrapper">
<?php echo epcl_display_post_format( $post_format, $post_id ); ?>
<!-- Only add meta info when post format is equal to Standard or Gallery -->
<?php if( $post_format !== 'audio' && $post_format !== 'video' ): ?>
<!-- start: .meta -->
<div class="meta top">
<?php if( epcl_get_option( 'enable_single_category', true ) ): ?>
<div class="tags">
<?php echo epcl_get_primary_category_link( $post_meta, $post_id ); ?>
</div>
<?php endif; ?>
<?php if( epcl_get_option( 'enable_single_meta_data', true ) ): ?>
<?php get_template_part('partials/meta-info/date'); ?>
<?php get_template_part('partials/meta-info/reading-time'); ?>
<?php endif; ?>
</div>
<!-- end: .meta -->
<div class="info">
<h1 class="main-title title large bordered small-border-radius"><?php the_title(); ?></h1>
</div>
<?php endif; ?>
</div>