如何在产品页面上显示?

时间:2020-03-04 14:02:01

标签: wordpress woocommerce

通过此功能,我可以选择在产品中使用自定义选择框。但它不会出现在产品页面的meta中。我只想展示一种特殊产品。我该怎么办?

我没有任何PHP经验。

<?php
function prefix_add_selectbox() {
  $args = array(
    'id' => 'my_new_select', // required. The meta_key ID for the stored value
    'wrapper_class' => '', // a custom wrapper class if needed
    'desc_tip' => true, // makes your description show up with a "?" symbol and as a tooltip
    'description' => __('My awesome select box', 'your_text_domain'),
    'label' => __( 'My New Select', 'your_text_domain' ),
    'options' => array(
      'value1' => __( 'Text 1', 'your_text_domain' ),
      'value2' => __( 'Text 2', 'your_text_domain' )
    )
  );
  woocommerce_wp_select( $args );
}

add_action( 'woocommerce_product_options_tax', 'prefix_add_selectbox' );```

0 个答案:

没有答案