<?php get_header(); ?>


<div class="container">
  <div class="single-content">

<section class="category-posts">
  <div class="category-title">
    <h3>نتایج جست و جو برای >>>    <span><?php the_search_query(); ?></span></h3>
  </div>
<div class="block-archive-post" style="grid-template-columns: 1fr 1fr;">
      <?php
      if ( have_posts() ) :
          while ( have_posts() ) : the_post(); ?>

          <div class="post-item">
          <?php the_post_thumbnail('post-thumbnail-size'); ?>
          <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
          <p><?php the_excerpt(); ?></p>
          <div class="more-btn"><a href="<?php the_permalink(); ?>">ادامه مطلب</a></div>
          </div>
          <?php
          endwhile;
      endif;
      ?>
</div>
</section>
<div class="page-pagination">
  <?php echo paginate_links(array(
    'prev_text'          => __( 'قبلی' ),
    'next_text'          => __( 'بعدی' ),
  )); ?>
</div>
  </div>
  <?php get_sidebar(); ?>
</div>

<?php get_footer(); ?>
