1. <?php
  2.     $args = array(
  3.         'post_type' => 'offers',
  4.         'meta_query' => array(
  5.             array(
  6.                 'key' => 'offer-status',
  7.                                  'value' => 'Active'
  8.             )
  9.         ),
  10.         'posts_per_page' => '3'
  11.     );
  12.     $offers_query = new WP_Query( $args );
  13. ?>
  14. <?php if ( $offers_query->have_posts() ) : while ( $offers_query->have_posts() ) : $offers_query->the_post(); ?>