Thank you so much Alchymyth for help me.
This is my site url: https://linkopen.net/3njy
I create manual the template.
This is the code of my category
<!--Bola-->
<div class="ks_category_left">
<h1 class="ks_h1_title_item1">Bola</h1>
<?php $recent = new WP_Query("cat=4&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
<div class="ks_posts_item1">
<div class="ks_postimage">
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
<?php get_the_image( array( 'size' => 'thumbnail', 'default_image' => 'https://kabarsore.com/noimages.jpg') ); ?>
</a>
</div>
<div class="ks_title_desc">
<div class="ks_postinfo">
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
<h4><?php $tit = the_title('','',FALSE); echo substr($tit, 0, 60); if (strlen($tit) > 60) echo " ..."; ?></h4>
</a>
</div>
<div class="ks_desc">
<?php echo get_excerpt(145); ?>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
<!--end Bola-->
# where is the image coming from? are you using the ‘featured image’ for this, or just the first image from the post?
Image come from first thumb image on post and i using plugin “Get the Image” to display the image.
Please help me.