File: /home/salhiscp/salhab360photos.com/wp-content/themes/acora/template-parts/post-templates/post.php
<?php
/*
Staandard Post Format
@package fwd
*/
$class = is_sticky() ? ' sticky' : '';
?>
<div id='post-<?php the_ID(); ?>' <?php wp_kses(post_class('entry acora-format-standard acora-hide' . esc_attr($class)), wp_kses_allowed_html('post')); ?>>
<div class="entry-content">
<?php
$class_name = 'title';
?>
<div class="<?php echo esc_html($class_name); ?>">
<?php echo acora_get_post_title_with_link(); ?>
</div>
<?php if(has_post_thumbnail()):
$featured_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()),'acora-blog-image');
?>
<div id="featured_image<?php echo get_the_ID(); ?>" class="featured_image acora-16-9"></div>
<?php
echo acora_get_FWDSI('mySISC' . get_the_ID(),
'featured_image' . get_the_ID(),
'afterparent',
esc_url($featured_image[0]),
esc_html($featured_image[1]),
esc_html($featured_image[2]));
?>
<?php endif; ?>
<div class="entry-excerpt">
<?php
the_excerpt();
acora_get_read_more();
?>
</div><!-- .entry-excerpt -->
</div><!-- .entry-content -->
</div>