Woocomerce:在模板文件中获取自定义字段(ACF)

时间:2019-02-15 09:08:13

标签: woocommerce advanced-custom-fields

我使用高级自定义字段(ACF)插件创建一个自定义字段:mycustomfield

此自定义字段附加到产品页面

在模板视图页面中,我需要为给定产品打印自定义字段的值。我的产品页面ID位于:$ product_id

echo $product_id; // this print the correct product page id

我尝试了这两行代码,但是都没有用:

echo $my_custom_field = get_post_meta( $product_id, 'mycustomfield', true ); // print nothing

echo $my_custom_field = get_field('mycustomfield', $product_id); // print nothing

0 个答案:

没有答案