Current Path : /var/www/mainsite/wp-content/themes/maxcoach/loop/widgets/blog/ |
Current File : /var/www/mainsite/wp-content/themes/maxcoach/loop/widgets/blog/style-grid.php |
<?php while ( $maxcoach_query->have_posts() ) : $maxcoach_query->the_post(); $classes = array( 'grid-item', 'post-item' ); ?> <div <?php post_class( implode( ' ', $classes ) ); ?>> <div class="post-wrapper maxcoach-box"> <?php if ( has_post_thumbnail() ) { ?> <div class="post-feature post-thumbnail maxcoach-image"> <a href="<?php the_permalink(); ?>"> <?php $size = Maxcoach_Image::elementor_parse_image_size( $settings, '480x325' ); Maxcoach_Image::the_post_thumbnail( array( 'size' => $size ) ); ?> </a> <?php if ( 'yes' === $settings['show_overlay'] ) : ?> <?php get_template_part( 'loop/blog/overlay', $settings['overlay_style'] ); ?> <?php endif; ?> </div> <?php } ?> <?php if ( 'yes' === $settings['show_caption'] ) : ?> <?php get_template_part( 'loop/blog/caption', $settings['caption_style'] ); ?> <?php endif; ?> </div> </div> <?php endwhile;