<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="item item--medium">
<div class="item__image">
<img src="<?php echo first_post_img() ?>" alt="<?php the_title(); ?>" />
</div>
<div class="item__title">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div>
<div class="item__text"><?php echo string_limit_words(kama_excerpt(), 25); ?> ...</div>
</div>
<?php endwhile; endif; ?>
<div class="pagination">
<?php wp_pagenavi(); ?>
</div>
<?php wp_reset_query(); ?>