我在白天努力添加和标记,但无法按预期进行。
有人可以帮助我在此代码段中添加标记和标记吗?
echo wc_get_product_category_list( $product->get_id(), '<span class="meta-sep">,</span> ', '<span class="posted_in">' . _n( 'Category:', 'Categories:' , count( $product->get_category_ids() ), 'woocommerce' ) . ' ', '</span>' );
例如:
<th>Category:</th> <td>Kit baby</td>
echo '<th>SKU:</th>' . '<td>' . $product->get_sku() . '</td>';
请帮助我谢谢。
答案 0 :(得分:1)
显示产品标签:
<?php
$current_tags = get_the_terms( get_the_ID(), 'product_tag' );
if ( $current_tags && ! is_wp_error( $current_tags ) ) {
echo '<tr>';
echo '<th>Tags: </th>';
foreach ($current_tags as $tag) {
$tag_title = $tag->name;
$tag_link = get_term_link( $tag );
echo '<td><a href="'.$tag_link.'">'.$tag_title.'</a></td>';
}
echo '</tr>';
} ?>
显示产品类别:
<?php
$current_tags = get_the_terms( get_the_ID(), 'product_cat' );
if ( $current_tags && ! is_wp_error( $current_tags ) ) {
echo '<tr>';
echo '<th>Category: </th>';
foreach ($current_tags as $tag) {
$tag_title = $tag->name;
$tag_link = get_term_link( $tag );
echo '<td><a href="'.$tag_link.'">'.$tag_title.'</a></td>';
}
echo '</tr>';
} ?>
希望这适合你。