Domain: antoinekatan.com
Server Adress: 10.127.20.23
privdayz.com
<?php if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="mkdf-post-content">
<?php if ( has_post_thumbnail() ) { ?>
<div class="mkdf-post-image">
<a itemprop="url" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail( 'thumbnail' ); ?>
</a>
</div>
<?php } ?>
<div class="mkdf-post-title-area <?php if ( ! has_post_thumbnail() ) { echo esc_attr( 'mkdf-no-thumbnail' ); } ?>">
<div class="mkdf-post-title-area-inner">
<h5 itemprop="name" class="mkdf-post-title entry-title">
<a itemprop="url" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</h5>
<?php
$mkdf_my_excerpt = get_the_excerpt();
if ( ! empty( $mkdf_my_excerpt ) ) { ?>
<p itemprop="description" class="mkdf-post-excerpt"><?php echo wp_trim_words( esc_html( $mkdf_my_excerpt ), 30 ); ?></p>
<?php } ?>
</div>
</div>
</div>
</article>
<?php endwhile; ?>
<?php else: ?>
<p class="mkdf-blog-no-posts"><?php esc_html_e( 'No posts were found.', 'quart' ); ?></p>
<?php endif; ?>
