如何使用元框插件在woocommerce产品类别中添加自定义字段

时间:2017-08-31 07:16:13

标签: wordpress woocommerce custom-fields meta-boxes

我只想使用metabox插件https://metabox.io/

在管理员的产品类别页面中添加自定义字段

这是在woocommerce,这就是我所拥有的

add_filter( 'rwmb_meta_boxes', 'product_register_meta_boxes' );    
function product_register_meta_boxes( $meta_boxes )
    {
        $prefix = 'product_';

        $meta_boxes[] = array(
            'id'         => 'product_cat_keywords_search',
            'title'      => __( 'Searchable keywords', 'your-prefix' ),
            'post_types' => array( 'product'),
            'taxonomy'   => array( 'product_cat'),
            'context'    => 'normal',
            'priority'   => 'low',
            'fields'     => array(

                array(
                    'name'  => __( 'Product Category Keywords', 'your-prefix' ),
                    'id'    => "{$prefix}pcat_keywords",
                    'desc'  => __( 'Category Keywords', 'your-prefix' ),
                    'type'  => 'text',
                    'std'   => __( '', 'your-prefix' ),
                    'clone' => true,
                    'clone-group' => 'my-clone-group2',
                ),

                )
        );  

        return $meta_boxes;
    } 

此代码仅显示在产品页面中,而不显示在产品类别页面中。

我需要使用metabox,因为我将使用克隆功能,谢谢

0 个答案:

没有答案