trAvis - MANAGER
Edit File: format-image.php
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly global $post; $postid = get_the_ID(); $featured_image_url = wp_get_attachment_url( get_post_thumbnail_id( get_the_ID() ) ); if(! empty( $featured_image_url )){ if($display_thumbnail=='yes' && !empty($thumbnail)){ $featured_image=get_the_post_thumbnail_url(get_the_ID(),$thumbnail); }else{ $featured_image=get_the_post_thumbnail_url(get_the_ID(),'full'); } $featured_image='<img src="'.esc_url($featured_image).'" alt="'.esc_attr(get_the_title()).'">'; }else{ $featured_image=theplus_get_thumb_url(); $featured_image=$featured_image='<img src="'.esc_url($featured_image).'" alt="'.esc_attr(get_the_title()).'">'; } ?> <div class="client-featured-logo"> <span class="thumb-wrap"> <?php echo $featured_image; ?> </span> </div>