Save and display product selected custom data everywhere in WooCommerce
问题 I have a code that shows the checkbox on the product edit page. When I click on this checkbox, a select box is displayed on the single product page. Here is my code: // Display Checkbox Field add_action('woocommerce_product_options_general_product_data', 'roast_custom_field_add'); function roast_custom_field_add(){ global $post; // Checkbox woocommerce_wp_checkbox( array( 'id' => '_roast_checkbox', 'label' => __('Roast Level', 'woocommerce' ), 'description' => __( 'Enable roast level!',