我正在寻找产品详情页面上的类别网址。我使用下面的代码来获取类别ID,但我不确定如何获取类别URL。
<?php
$terms = get_the_terms( $post->ID, 'product_cat' );
foreach ($terms as $term) {
echo $product_cat_id = $term->term_id;
break;
}
答案 0 :(得分:5)
如果您有产品类别id
,则可以使用
$link = get_term_link( $product_cat_id, 'product_cat' );
获取产品类别的网址。
编辑请确保product_cat_id是一个整数,请使用以下行完全保存:
$link = get_term_link( (int)$product_cat_id, 'product_cat' );
答案 1 :(得分:2)
如果某个产品属于一个或多个类别,那么您可以直接访问$terms[0]
位置并检索该网址
以下是代码:
global $post;
$link = '';
$terms = get_the_terms( $post->ID, 'product_cat' );
if(!empty($terms[0])){
$link = get_term_link( $terms[0]->term_id, 'product_cat' );
}
现在只需检查$link
是否为空,然后执行所需的操作。
代码经过测试并有效。
希望这有帮助!
答案 2 :(得分:0)
您可以使用get_category_link(int|object $category)
https://developer.wordpress.org/reference/functions/get_category_link/
这里是我如何在“ content-product_cat.php
”上使用它
<a href="<?php esc_url_e( get_category_link( $category->term_id ) ); ?>">
<h5 class="product-name"><?php esc_attr_e( $category->name ); ?></h5>
<span class="dima-divider line-center line-hr small-line"></span>
<span class="count">
<?php if ( $category->count > 0 ) {
echo apply_filters( 'woocommerce_subcategory_count_html', $category->count . ' ' . ( $category->count > 1 ? __( 'Products', 'woocommerce' ) : __( 'Product', 'woocommerce' ) ), $category );
}?>
</span>
</a>