'recipes',
'posts_per_page' => $instance['post_nmb'],
'tax_query' => array(
array(
'taxonomy' => 'recipes-categories',
'field' => 'term_id',
'terms' => $instance['category']
)
)
);
$posts = new WP_Query($arg);
if ($posts->have_posts()) : while ($posts->have_posts()) : $posts->the_post(); ?>