<?php
$query = $this->query_posts();
$_random = gaviasthemer_random_id();
if ( ! $query->found_posts ) {
return;
}
$this->add_render_attribute('wrapper', 'class', ['gva-posts-sticky clearfix gva-posts']);
//add_render_attribute grid
$this->get_grid_settings();
?>
<div <?php echo $this->get_render_attribute_string('wrapper'); ?>>
<div class="gva-content-items cleafix">
<?php
global $post;
$i = 0;
while ( $query->have_posts() ) {
$i ++;
$query->the_post();
$post->post_count = $query->post_count;
set_query_var( 'thumbnail_size', $settings['image_size'] );
set_query_var('index', $i);
if( $i == 1 ){
echo '<div class="first-post">';
get_template_part('templates/content/item', 'post-style-sticky' );
echo '</div>';
}else{
if( $i == 2 ){ echo '<div class="list-post">'; }
get_template_part('templates/content/item', 'post-style-sticky' );
if( $i == $query->found_posts || $i == $settings['posts_per_page']) { echo '</div>'; }
}
}
?>
</div>
<?php if($settings['pagination'] == 'yes'): ?>
<div class="pagination">
<?php echo $this->pagination($query); ?>
</div>
<?php endif; ?>
</div>
<?php
wp_reset_postdata();