File: /var/www/vhosts/byildiz.com.tr/httpdocs/wp-content/themes/lumex/template-parts/content-latest.php
<?php
/**
* Template part for displaying latest posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package lumex
*/
?>
<?php
//content
$image = get_the_post_thumbnail_url( get_the_ID(), 'lumex_950xAuto' );
?>
<div id="latest-post-<?php the_ID(); ?>" <?php post_class(); ?>>
<a href="<?php echo esc_url( get_permalink() ); ?>" class="mil-blog-card-sm mil-c-gone">
<div class="mil-cover">
<?php if ( $image ) : ?>
<div class="mil-hover-frame">
<img src="<?php echo esc_url( $image ); ?>" alt="<?php echo esc_attr( get_the_title() ); ?>">
</div>
<?php endif; ?>
</div>
<div class="mil-text-frame">
<h4 class="mil-head6 mil-max-1row-text"><?php the_title(); ?></h4>
</div>
</a>
</div>