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-one-left-featured.php |
<?php if ( ! isset( $settings ) ) { $settings = array(); } $loop_count = 0; $left_box_template = $right_box_template = ''; ?> <?php while ( $maxcoach_query->have_posts() ) : $maxcoach_query->the_post(); ?> <?php if ( $loop_count === 0 ) : ?> <?php ob_start(); ?> <div <?php post_class( 'grid-item' ); ?>> <div class="post-wrapper maxcoach-box"> <div class="post-feature post-thumbnail maxcoach-image"> <a href="<?php the_permalink(); ?>" class="link-secret"> <?php \Maxcoach_Image::the_post_thumbnail( [ 'size' => '570x330', ] ); ?> <div class="post-overlay-background"></div> </a> <div class="post-overlay-content"> <div class="post-overlay-content-inner"> <div class="post-overlay-info"> <div class="post-overlay-meta"> <?php Maxcoach_Post::instance()->the_category( [ 'classes' => 'post-overlay-categories', ] ); ?> <?php Maxcoach_Post::instance()->meta_date_template(); ?> <?php Maxcoach_Post::instance()->meta_view_count_template(); ?> </div> </div> </div> </div> </div> <div class="post-caption"> <h3 class="post-title"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </h3> <div class="post-excerpt"> <?php Maxcoach_Templates::excerpt( array( 'limit' => 20, 'type' => 'word', ) ); ?> </div> <?php $read_more_text = ! empty( $settings['read_more_text'] ) ? $settings['read_more_text'] : esc_html__( 'Read more', 'maxcoach' ); Maxcoach_Templates::render_button( [ 'style' => 'bottom-line', 'text' => $read_more_text, 'icon' => 'far fa-long-arrow-right', 'icon_align' => 'right', 'link' => [ 'url' => get_the_permalink(), ], 'size' => 'nm', 'wrapper_class' => 'post-read-more', ] ); ?> </div> </div> </div> <?php $left_box_template .= ob_get_clean(); ?> <?php else: ?> <?php ob_start(); ?> <div <?php post_class( 'grid-item' ); ?>> <div class="maxcoach-box"> <div class="post-thumbnail-wrap"> <div class="post-feature post-thumbnail maxcoach-image"> <a href="<?php the_permalink(); ?>" class="link-secret"> <?php \Maxcoach_Image::the_post_thumbnail( [ 'size' => '200x130', ] ); ?> </a> <?php if ( 'yes' === $settings['show_overlay'] ) : ?> <?php get_template_part( 'loop/blog/overlay', $settings['overlay_style'] ); ?> <?php endif; ?> </div> </div> <?php if ( 'yes' === $settings['show_caption'] ) : ?> <div class="post-info"> <?php get_template_part( 'loop/blog/caption', $settings['caption_style'] ); ?> </div> <?php endif; ?> </div> </div> <?php $right_box_template .= ob_get_clean(); ?> <?php endif; ?> <?php $loop_count++; ?> <?php endwhile; ?> <div class="row row-no-gutter"> <div class="col-md-6 featured-post"> <?php echo $left_box_template; ?> </div> <div class="col-md-6 normal-posts"> <?php echo $right_box_template; ?> </div> </div>