商品詳細ページのカテゴリーURLを探しています。以下のコードを使用してカテゴリ ID を取得していますが、カテゴリ URL を取得する方法がわかりません。
<?php
$terms = get_the_terms( $post->ID, 'product_cat' );
foreach ($terms as $term) {
echo $product_cat_id = $term->term_id;
break;
}
商品詳細ページのカテゴリーURLを探しています。以下のコードを使用してカテゴリ ID を取得していますが、カテゴリ URL を取得する方法がわかりません。
<?php
$terms = get_the_terms( $post->ID, 'product_cat' );
foreach ($terms as $term) {
echo $product_cat_id = $term->term_id;
break;
}