'category',
'field' => 'slug',
'terms' => $blog_category
);
}
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 6,
'ignore_sticky_posts' => 1,
'tax_query' => $tax_query,
);
$post_type_data = new WP_Query($args);
while ($post_type_data->have_posts()):
$post_type_data->the_post();
echo(($loop % 3 == 1 || $loop == 1) ? '
' : '');
?>
'bhumi_img_responsive');
if (has_post_thumbnail()):
the_post_thumbnail('bhumi_home_post_thumb', $img);
endif; ?>
' : '');
$loop++;
endwhile;
wp_reset_postdata();
endif; ?>