从WooCommerce的产品类别中获取自定义字段值

时间:2016-09-09 19:40:58

标签: php wordpress woocommerce

我正在尝试获取要为每种产品显示的类别的自定义字段值。

我正在使用高级自定义字段(ACF)插件在woocommerce产品类别中创建名为category_attributes的新选项。

我想为此类别的产品显示category_attributes的值。

这是我创建的功能。目前正在使用" product_cat_22"显示该产品类别的值,但需要提取该产品的类别ID并显示该类别的category_attributes字段。

//Category Listing Hooks
function add_category_info_below_title() {

$custom_field = get_field('category_attributes', 'product_cat_22');

echo '<div class="subCatAtts">' . $custom_field . '</div>';

}
add_action( 'woocommerce_after_subcategory_title', 'add_category_info_below_title' );

以下是可以查看此内容的网站 - http://mdev4.com/roura/one/

容量:4,000-8,000 LBS是产品类别22的正确值category_attributes。

0 个答案:

没有答案