簡體   English   中英

使用標簽更改 woocommerce 相關產品文本

[英]Changing woocommerce related products text with tags

我目前正在使用更改相關產品標題在 WooCommerce 答案代碼中添加產品名稱,而不是 get_the_title 我想獲取產品的標簽

$term_list = array();
$terms_data = wp_get_post_terms( get_the_id(), 'product_tag' );
if( count($terms_data) > 0 ){
    foreach($terms_data as $termdata){
        $term_id = $termdata->term_id;
        $term_name = $termdata->name;
        $term_slug = $termdata->slug;
        $term_link = get_term_link( $termdata, 'product_tag' );
        $term_list[] = '<a href="'.$term_link.'">'.$term_name.'</a>';
    }
    $term_list = implode( ', ', $output );
    echo $term_list;
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM