Woocommerce 是基于 WordPress 的购物网站最有力的插件被广泛使用。Woocommerce 本身是一款免费的插件,但它提供了丰富的扩展接口,为网站的进一步开发提供了无限的可能,woocommerce 中的标签和 WordPress 中的文章标签几乎是一个道理,有些人会认为标签和分类十分接近,没有必要使用标签。默认提供了分类和标签字段,但是,有的时候我们需要更多自定义的字段,并且显示在商品页的其他位置,这就需要在 Woocommerce 插件的商品后台增加自定义字段。
实例代码:
register_taxonomy(
'product_jibie',
apply_filters( 'woocommerce_taxonomy_objects_product_cat', array( 'product' ) ),
apply_filters(
'woocommerce_taxonomy_args_product_cat',
array(
'hierarchical' => true,
'update_count_callback' => '_wc_term_recount',
'label' => __( '级别', 'woocommerce' ),
'labels' => array(
'name' => __( '级别', 'woocommerce' ),
'singular_name' => __( 'Category', 'woocommerce' ),
'menu_name' => _x( '级别', 'Admin menu name', 'woocommerce' ),
'search_items' => __( 'Search categories', 'woocommerce' ),
'all_items' => __( 'All categories', 'woocommerce' ),
'parent_item' => __( 'Parent category', 'woocommerce' ),
'parent_item_colon' => __( 'Parent category:', 'woocommerce' ),
'edit_item' => __( 'Edit category', 'woocommerce' ),
'update_item' => __( 'Update category', 'woocommerce' ),
'add_new_item' => __( 'Add new category', 'woocommerce' ),
'new_item_name' => __( 'New category name', 'woocommerce' ),
'not_found' => __( 'No categories found', 'woocommerce' ),
),
'show_ui' => true,
'query_var' => true,
'capabilities' => array(
'manage_terms' => 'manage_product_terms',
'edit_terms' => 'edit_product_terms',
'delete_terms' => 'delete_product_terms',
'assign_terms' => 'assign_product_terms',
),
'rewrite' => array(
'slug' => $permalinks['category_rewrite_slug'],
'with_front' => false,
'hierarchical' => true,
),
)
)
);
以上代码添加到主题 functions 里,效果如下图我们添加一个 级别 字段:
专业提供WordPress主题安装、深度汉化、加速优化等各类网站建设服务,详询在线客服!