我目前有一个wordpress网站,用户可以上传和销售他们的音乐。在woocommerce的帖子页面中,我有一个自定义的“常规价格”字段,可以为用户提供价格过低选择的下拉菜单。它一直在工作直到最近,现在价格不再显示在前端,并且产品图像上现在出现销售标签。
这是自定义价格字段的代码:
add_action( 'woocommerce_product_options_pricing', 'theme_slug_custom_product_field' );
function theme_slug_custom_product_field() {
woocommerce_wp_select(array(
'id' => '_regular_price'
, 'label' => __( 'Regular Price', 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol() . ')'
, 'data_type' => 'price'
, 'options' => array(
''=>Free
, '0.99'=>Singles
, '4.99'=>Mixtapes
, '9.99'=>Albums )
)
);
}
我真的需要弄清楚造成这种情况的原因。