如何从插件中为WooCommerce创建属性? 我只发现:
wp_set_object_terms( $object_id, $terms, $taxonomy, $append);
但这种方法需要某些产品的ID。我需要生成一些不附加到任何产品的属性。
答案 0 :(得分:9)
要创建字词,您可以使用wp_insert_term()
wp_insert_term( 'red', 'pa_colors' );
其中colors
是您的属性的名称。属性的分类名称始终以pa_
为前缀。
编辑属性只是自定义分类。或者你可以说它们是由后端用户手动创建的动态分类法。仍然适用所有相同的自定义分类规则。
您可以看到source code here循环遍历属性并在每个属性上运行register_taxonomy()
。因此,要创建一个新属性(请记住它只是一个分类法),那么您需要在分类名称的开头运行register_taxonomy()
和简单的前置pa_
。
从核心模仿分类标准的一些价值,会让你得到像这样的颜色'颜色'属性。
add_action( 'woocommerce_after_register_taxonomy', 'so_29549525_register_attribute' );
function so_29549525_register_attribute(){
$permalinks = get_option( 'woocommerce_permalinks' );
$taxonomy_data = array(
'hierarchical' => true,
'update_count_callback' => '_update_post_term_count',
'labels' => array(
'name' => 'Colors',
'singular_name' => 'Color',
'search_items' => sprintf( __( 'Search %s', 'woocommerce' ), $label ),
'all_items' => sprintf( __( 'All %s', 'woocommerce' ), $label ),
'parent_item' => sprintf( __( 'Parent %s', 'woocommerce' ), $label ),
'parent_item_colon' => sprintf( __( 'Parent %s:', 'woocommerce' ), $label ),
'edit_item' => sprintf( __( 'Edit %s', 'woocommerce' ), $label ),
'update_item' => sprintf( __( 'Update %s', 'woocommerce' ), $label ),
'add_new_item' => sprintf( __( 'Add New %s', 'woocommerce' ), $label ),
'new_item_name' => sprintf( __( 'New %s', 'woocommerce' ), $label )
),
'show_ui' => false,
'query_var' => true,
'rewrite' => array(
'slug' => empty( $permalinks['attribute_base'] ) ? '' : trailingslashit( $permalinks['attribute_base'] ) . sanitize_title( 'colors' ),
'with_front' => false,
'hierarchical' => true
),
'sort' => false,
'public' => true,
'show_in_nav_menus' => false,
'capabilities' => array(
'manage_terms' => 'manage_product_terms',
'edit_terms' => 'edit_product_terms',
'delete_terms' => 'delete_product_terms',
'assign_terms' => 'assign_product_terms',
)
);
register_taxonomy( 'pa_colors', array( 'product' ) ), $taxonomy_data );
}
答案 1 :(得分:3)
适用于Woocommerce 3 + (2018年)
要使用标签名称创建新的产品属性,请使用以下功能:
function create_product_attribute( $label_name ){
global $wpdb;
$slug = sanitize_title( $label_name );
if ( strlen( $slug ) >= 28 ) {
return new WP_Error( 'invalid_product_attribute_slug_too_long', sprintf( __( 'Name "%s" is too long (28 characters max). Shorten it, please.', 'woocommerce' ), $slug ), array( 'status' => 400 ) );
} elseif ( wc_check_if_attribute_name_is_reserved( $slug ) ) {
return new WP_Error( 'invalid_product_attribute_slug_reserved_name', sprintf( __( 'Name "%s" is not allowed because it is a reserved term. Change it, please.', 'woocommerce' ), $slug ), array( 'status' => 400 ) );
} elseif ( taxonomy_exists( wc_attribute_taxonomy_name( $label_name ) ) ) {
return new WP_Error( 'invalid_product_attribute_slug_already_exists', sprintf( __( 'Name "%s" is already in use. Change it, please.', 'woocommerce' ), $label_name ), array( 'status' => 400 ) );
}
$data = array(
'attribute_label' => $label_name,
'attribute_name' => $slug,
'attribute_type' => 'select',
'attribute_orderby' => 'menu_order',
'attribute_public' => 0, // Enable archives ==> true (or 1)
);
$results = $wpdb->insert( "{$wpdb->prefix}woocommerce_attribute_taxonomies", $data );
if ( is_wp_error( $results ) ) {
return new WP_Error( 'cannot_create_attribute', $results->get_error_message(), array( 'status' => 400 ) );
}
$id = $wpdb->insert_id;
do_action('woocommerce_attribute_added', $id, $data);
wp_schedule_single_event( time(), 'woocommerce_flush_rewrite_rules' );
delete_transient('wc_attribute_taxonomies');
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
基于:
wc_create_attribute()
function代码(Woocommerce 3.2及更高版本)。相关:Create programmatically a product using CRUD methods in Woocommerce 3