只是想问一下这里是否有人可以告诉我如何将当前产品类别名称包含在Woocommerce的单个产品页面的顶部。
我打算将它放在产品页面顶部的痕迹路径上方。我已经在这里添加了一个我正在寻找的示例的链接:http://www.espguitars.com/guitars/signature/kirk.html -
请注意,在页面的右上角,您将看到当前的类别名称,在本例中,类别名称为Guitars。我意识到我给出的网站示例不是wordpress网站,但我确信有一种方法可以通过woocommerce来实现这一点。
答案 0 :(得分:2)
如果您检查WooCommerce插件的“templates / single-product”文件夹中的meta.php文件,您将看到WooCommerce插件如何将当前产品的产品类别显示为产品元信息。
<?php
...
global $post, $product;
?>
<div class="product_meta">
...
<?php echo $product->get_categories( ', ', '<span class="posted_in">' . _n( 'Category:', 'Categories:', sizeof( get_the_terms( $post->ID, 'product_cat' ) ), 'woocommerce' ) . ' ', '.</span>' ); ?>
...
</div>
请将代码复制到您的主题并相应地进行修改。