Здравствуйте уважаемые форумчане,не получается сделать выборку по свойству товар woocommerce
$attributes = $product->get_attributes();
$argss = array(
'post_type' => 'product',
'post_status' => 'publish',
'cena-polotna-banner'=>array('value'=> 4500),
'ignore_sticky_posts' => 1,
'posts_per_page' => 50,
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => $cat,
)
)
);
$loop = new WP_Query( $argss );
while ( $loop->have_posts() ) : $loop->the_post();
Работает все кроме 'cena-polotna-banner'=>array('value'=> 4500),
Подскажите пожалуйста что я неправильно делаю?