在WPML中翻译WooCommerce分类标准品牌

时间:2019-06-05 16:42:48

标签: php wordpress woocommerce wpml

我已经在functions.php中将Brand添加到WooCommerce中。

在我拥有的品牌中,
品牌一号
品牌二
品牌三等

对于每个品牌,我也会有一个描述,就像我通常在分类法中一样。

如何将其转换为WPML。

// register product_brand taxonomy for woocommerce  
function add_product_brands(){
    register_taxonomy('product_brand',array('product'), array(
        'labels' => array(
        'name' => 'Brands',
        'singular_name' => 'Brand',
        'search_items' => 'Search Brands',
        'all_items' => 'All Brands',
        'parent_item' => 'Parent Brand',
        'parent_item_colon' => 'Parent Brand:',
        'edit_item' => 'Edit Brand' ,
        'update_item' => 'Update Brand',
        'add_new_item' => 'Add New Brand',
        'new_item_name' => 'New Brand',
        'not_found' => 'No Brand Found',
        'menu_name' => 'Brands'),
        'hierarchical' => true,
        'query_var' => true,
        'public' => true,
        'show_tagcloud' => true,
        'show_admin_column' => true,
        'show_in_nav_menus' => true,
        'sort' => '',
        'rewrite' => array('slug' => 'brand','with_front' => false),
        'show_ui' => true)); }
add_action('init','add_product_brands', 0);

我认为my_text_domain有点问题,因为已经在med ACF选项页面上做到了,但是我不能在这里使它工作。

0 个答案:

没有答案