File: /var/www/html/wpprm/wp-content/themes/ronneby/templates/blog-fitRows-media.php
<?php
if ( ! defined( 'ABSPATH' ) ) { exit; }
if (has_post_thumbnail()) {
$thumb = get_post_thumbnail_id();
$img_url = wp_get_attachment_url($thumb, 'full'); //get img URL
$img_src = $img_url;
$img_url = dfd_aq_resize($img_url, 900, 600, true, true, true);
if(!$img_url) {
$img_url = $img_src;
}
?>
<div class="entry-media <?php echo esc_attr($options['blog_comments_likes_style']) ?>">
<div class="entry-thumb">
<img src="<?php echo esc_url($img_url); ?>" alt="<?php the_title(); ?>"/>
<?php if($options['blog_show_comments'] == 'on') : ?>
<div class="post-comments-wrap">
<?php get_template_part('templates/entry-meta/mini', 'comments-number'); ?>
</div>
<?php endif; ?>
<?php if($options['blog_show_likes'] == 'on') : ?>
<div class="post-like-wrap">
<?php get_template_part('templates/entry-meta/mini', 'like'); ?>
</div>
<?php endif; ?>
</div>
</div>
<?php
}