Skip to content

Instantly share code, notes, and snippets.

View rebastion's full-sized avatar
💭
I may be slow to respond.

Sebastian Haselbeck rebastion

💭
I may be slow to respond.
View GitHub Profile
<?php
if ( $attribute['is_taxonomy'] ) {
$values = wc_get_product_terms( $product->id, $attribute['name'], array( 'fields' => 'ids' ) );
$links = array();
foreach ( $values as $value ) {
$term = get_term_by( 'id', $value, $attribute['name'] );
$links[] = '<a href="' . esc_url( get_term_link( $term->slug, $attribute['name'] ) ) . '">' . esc_html( $term->name ) . '</a>';
}