在单个产品页面上的产品名称旁边显示类别名称
Display category name next to product name on single product page
我正在尝试在我的 woocommerce 页面上的产品名称旁边添加类别名称。由于SEO原因,我想展示它,以便Google知道该产品属于该类别。
我的代码目前看起来像这样
the_title( '<h1 class="product_title entry-title">', '</h1> <?php echo wc_get_product_category_list($product->get_id()) ?>' );
我试图通过添加
来完成它
<?php echo wc_get_product_category_list($product->get_id()) ?>
但是没有类别名称,dev consolse 等也没有显示错误。
而是尝试用以下代码替换您的代码:
the_title( '<h1 class="product_title entry-title">', '</h1>' );
$terms = wp_get_post_terms( get_the_id(), 'product_cat' );
$term = reset($terms);
echo $term->name;
应该可以。
我正在尝试在我的 woocommerce 页面上的产品名称旁边添加类别名称。由于SEO原因,我想展示它,以便Google知道该产品属于该类别。
我的代码目前看起来像这样
the_title( '<h1 class="product_title entry-title">', '</h1> <?php echo wc_get_product_category_list($product->get_id()) ?>' );
我试图通过添加
来完成它<?php echo wc_get_product_category_list($product->get_id()) ?>
但是没有类别名称,dev consolse 等也没有显示错误。
而是尝试用以下代码替换您的代码:
the_title( '<h1 class="product_title entry-title">', '</h1>' );
$terms = wp_get_post_terms( get_the_id(), 'product_cat' );
$term = reset($terms);
echo $term->name;
应该可以。