Current File : /home/itiffy/rockyjohnsonconcrete.com/wp-content/themes/rockyjohnson/ajaxItemList.php
<?php
 require_once('../../../wp-config.php');
 //echo $_POST['catID'];

	query_posts(array( 'post_type'=>'product', 'order'=> 'ASC', 'cat'=> $_POST['catID'], 'posts_per_page' => -1 ));
		if(have_posts()){
			while(have_posts()){
				the_post(); 
  ?>
  <div class="col-md-3">
	  <div class="servBox">
		  <div class="thumb_img"><a href="<?php the_permalink(); ?>"><img src="<?php the_post_thumbnail_url(); ?> " /></a></div>
		  <h4><a href="<?php the_permalink(); ?>"><?php the_title();  ?></a></h4>
		  <p><?php echo wp_trim_words( get_field('product_short_description'), 12, '...' ); ?></p>
		  <a class="btns" href="<?php the_permalink(); ?>">View Item</a>
	  </div>
  </div>
  <?php } } ?>