Konu
Woocommerce Kategorilere ait ürünlerin id lerini çekmek
06-04-2022, 01:45:06
#3
ONURERDGN
geceyarisi adlı üyeden alıntı:
mesajı görüntüle
https://woocommerce.github.io/woocom...oduct-category
function
get_products_from_category_by_ID
(
$category
) {
$products
=
new
WP_Query
(
array
(
'post_type'
=>
'product'
,
'post_status'
=>
'publish'
,
'fields'
=>
'ids'
,
'tax_query'
=>
array
(
'relation'
=>
'
AND
'
,
array
(
'taxonomy'
=>
'product_cat'
,
'field'
=>
'term_id'
,
'terms'
=>
$category
,
)
),
) );
return
$products
->
posts
;
}
get_products_from_category_by_ID
( #kategoriid#
);
bunun ile çözdüm teşekkür ederim hocam sağolun.