需要在单个产品页面上的相关产品中显示自定义字段。
我想在Add New Product字段中添加一个meta框,并在评论下的单个产品页面的“自定义”标签上显示结果。我尝试使用代码,但页面上没有任何显示。添加其他产品标签有助于我添加其他信息。因此,添加,保存和显示产品是我想要的。
add_filter( 'add_meta_boxes', 'bhww_core_cpt_metaboxes' );
function bhww_core_cpt_metaboxes( $meta_boxes ) {
//global $prefix;
$prefix = '_bhww_'; // Prefix for all fields
// Add metaboxes to the 'Product' CPT
$meta_boxes[] = array(
'id' => 'bhww_woo_tabs_metabox',
'title' => 'Additional Product Information - <strong>Optional</strong>',
'pages' => array( 'product' ), // Which post type to associate with?
'context' => 'normal',
'priority' => 'default',
'show_names' => true,
'fields' => array(
array(
'name' => __( 'Ingredients', 'cmb' ),
'desc' => __( 'Anything …Run Code Online (Sandbox Code Playgroud)