$query = new WP_Query(array(
'post_type' => 'post',
'posts_per_page' => 6,
'post_status' => 'publish',
'orderBy' => 'ID',
'order' => 'DESC',
'tax_query' => array(
[
'taxonomy' => 'category',
'field' => 'term_id',
'terms' => 3
]
)
));
ob_start();
?>
