我在woo commerce添加产品页面中添加了一个自定义字段,其中包含令牌数量的名称。现在这些令牌已成功保存在数据库中。现在,我想将这些令牌显示为用户帐户,例如总令牌:50 。
以下是我添加的用于将自定义字段值添加到数据库
的代码function woocommerce_product_custom_fields()
{
global $woocommerce, $post;
echo '<div class="product_custom_field">';
//Custom Product Number Field
woocommerce_wp_text_input(
array(
'id' => '_custom_product_number_field',
'placeholder' => 'Number of Tokens',
'label' => __('Number of Tokens', 'woocommerce'),
'type' => 'number',
'custom_attributes' => array(
'step' => 'any',
'min' => '0'
)
)
);
echo '</div>';
}
function woocommerce_product_custom_fields_save($post_id)
{
// Custom Product Number Field
$woocommerce_custom_product_number_field = $_POST['_custom_product_number_field'];
if (!empty($woocommerce_custom_product_number_field))
update_post_meta($post_id, '_custom_product_number_field', esc_attr($woocommerce_custom_product_number_field));
}
现在我想将_custom_product_number_field保存值显示到用户帐户中。请让我知道我该怎么做
谢谢