标签: wordpress woocommerce
我在wordpress / woocommerce产品页面上设置了2个自定义字段,名为“imballo”和“sottoimballo”及其值。如何在已发布的页面上显示这些内容?
谢谢!
答案 0 :(得分:1)
您必须在WooCommerce单一产品页面模板
你可以用两种方式做到这一点,
在您要显示的位置执行以下操作,
<?php //Please add your HTML structure as needed. echo get_post_meta(get_the_ID(), 'imballo'); echo get_post_meta(get_the_ID(), 'sottoimballo'); ?>