I want to show posts in index page but just the first one is shown!this is the code:
<div class="w3ls">
<?php if(have_posts()):
while (have_posts()) : the_post();
?>
<div class="col-md-6 w3ls-right wow fadeInDown" data-wow-duration=".8s" data-wow-delay=".2s">
<div class="tc-ch">
<div class="tch-img">
<a href="<?php the_permalink(); ?>"><img src="<?php the_post_thumbnail_url(); ?>" style=" width: 400px !important; height: 300px !important;" alt=""/></a>
</div>
<h3><a href="singlepage.html">
<?php the_title(); ?>
</a></h3>
<h6>توسط <a href="singlepage.html">
<?php the_author() ?></a><?php the_date() ?></h6>
<p><?php the_excerpt(); ?></p>
<div class="bht1">
<a href="singlepage.html">ادامه مطلب</a>
</div>
<div class="soci">
<ul>
<li class="hvr-rectangle-out"><a class="twit" href="#"></a></li>
<li class="hvr-rectangle-out"><a class="drib" href="#"></a></li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
<div class="clearfix"></div>
</div>
what is the problem?