Bir sorunum var çözemedim "'taxonomy' => 'product_cat'," kısmı gördüğünüz gibi "WooCommerce" eklentisindeki kategorileri görmek için ayarlanmış bu kod gibi bir kod ile ben "jop-list" eklentim olan kategorileride aynı anda görmek istiyorum bunu nasıl yapabilirm






// Get WooCommerce categories
$wooCommerceCategories = get_categories([
'taxonomy' => 'product_cat',
'orderby' => 'name',
'hierarchical' => 0,
'hide_empty' => false,
]);

$categories = [];
foreach($wpCategories as $category) {
$categories[$category->cat_ID] = $category->name . " (" . $category->cat_ID . ")";
}

if(!isset($wooCommerceCategories["errors"])) {
foreach ($wooCommerceCategories as $category) {
$categories[$category->cat_ID] = $category->name . " (" . $category->cat_ID . ") (WooCommerce)";
}
}

return $categories;
}