$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'posts_per_page' => 50,
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => $cat
),
array(
'taxonomy' => 'attribute',
'field' => 'slug',
'terms' => array( 'pa_cena-polotna-banner', '4500' ),
)
)
);