File: //old_home_backup/vinylsingles.co.uk/public_html/wp-content/themes/advance/content.php
<?php
/**
* Template part for displaying posts.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Advance
*/
?>
<div class="matchhe post_warp large-4 medium-6 columns wow fadeInLeft page-delay ">
<div class="single_latest_news">
<div class="latest_news_image">
<!--CALL TO POST IMAGE-->
<?php if ( get_the_post_thumbnail() != '' ) {
echo '<a href="';esc_url( get_permalink()); echo '" >';
the_post_thumbnail();
echo '</a>';
} else {
echo '<a href="';esc_url( get_permalink()); echo '" >';
echo '<img src="';
echo esc_url (advance_catch_that_image());
echo '" alt="" />';
echo '</a>';
};?>
</div><!--end POST IMAGE-->
<div class=" latest_news_desc">
<?php the_title( sprintf( '<h2><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
<h4><?php the_author(); ?> | <?php the_time( get_option('date_format') ); ?></h4>
<p><?php the_excerpt(); ?></p>
<a class="read_more" href="<?php echo esc_url(get_permalink());?>"><?php echo esc_attr__('Read more','advance');?></a>
</div><!-- latest_news_desc-->
</div>
</div>