Hi, I would like to find a way to get all the products that match an attribute marca= 226ers.
I have tried a thousand ways but none of them work. Here is an example:
$data = [
'attributes' => [
[
'id' => 3,// id of attribute Marca
'options' => '226Ers'
]
]
];
$this->productos = $woocommerce->get('products', $data);
Get all products that have an attribute x
Hi, I would like to find a way to get all the products that match an attribute marca= 226ers. I have tried a thousand ways but none of them work. Here is an example:
Any help? Thanks