我在网页上有一个非常大的产品数据库。这个网页是用PHP编写的,现在我需要将其数据库迁移到Wordpress(WooCommerce)站点。我已经想出了如何添加产品。我用这个标题创建了一个php文件(在wordpress之外),所以我可以使用所有的wordpress函数:
include('../wp/wp-load.php');
require_once('../wp/wp-admin/includes/media.php');
require_once('../wp/wp-admin/includes/file.php');
require_once('../wp/wp-admin/includes/image.php');
首先,我将所有产品从旧数据库中获取到php数组 $ items ,然后使用foreach循环遍历此数组。在循环中我有这个代码:
$user_id = get_current_user();
$post_id = wp_insert_post(array(
'post_author' => $user_id,
'post_title' => $item['termek'],
'post_content' => $item['reszletes_leiras'],
'post_status' => 'publish',
'post_type' => "product",
));
wp_set_object_terms( $post_id, 'simple', 'product_type' );
update_post_meta( $post_id, '_visibility', 'visible' );
update_post_meta( $post_id, '_stock_status', 'instock');
update_post_meta( $post_id, 'total_sales', '0' );
update_post_meta( $post_id, '_downloadable', 'no' );
update_post_meta( $post_id, '_virtual', 'no' );
update_post_meta( $post_id, '_regular_price', $item['brutto_ar'] );
update_post_meta( $post_id, '_sale_price', $item['brutto_ar'] );
update_post_meta( $post_id, '_purchase_note', '' );
update_post_meta( $post_id, '_featured', 'no' );
update_post_meta( $post_id, '_weight', '' );
update_post_meta( $post_id, '_length', '' );
update_post_meta( $post_id, '_width', '' );
update_post_meta( $post_id, '_height', '' );
update_post_meta( $post_id, '_sku', $item['id'] );
update_post_meta( $post_id, '_product_attributes', array() );
update_post_meta( $post_id, '_sale_price_dates_from', '' );
update_post_meta( $post_id, '_sale_price_dates_to', '' );
update_post_meta( $post_id, '_price', '' );
update_post_meta( $post_id, '_sold_individually', '' );
update_post_meta( $post_id, '_manage_stock', 'no' );
update_post_meta( $post_id, '_backorders', 'no' );
update_post_meta( $post_id, '_stock', '' );
我的问题是我在$ item [' parameterek']中也有一个数组,看起来很奇怪:
["Some custom attribute"] => (string)"Something"
["Another custom attribute"] => (string)"Something else"
现在我需要将这些字段作为自定义属性添加到产品中。数组键是名称,值当然是......值。我尝试这样做,但这段代码似乎无能为力:
foreach(array_keys($item['parameterek']) as $key) {
register_attribute($key);
}
wproduct_set_attributes($post_id, $item['parameterek']);
function register_attribute($name){
$paname = 'pa_' . htmlspecialchars(stripslashes($name));
$permalinks = get_option('woocommerce_permalinks');
$taxonomy_data = array(
'hierarchical' => false,
'update_count_callback' => '_update_post_term_count',
'labels' => array(
'name' => $name,
'singular_name' => $name,
'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( $name ),
'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($paname, array('product'), $taxonomy_data);
}
function wcproduct_set_attributes($post_id, $attributes) {
$i = 0;
// Loop through the attributes array
foreach ($attributes as $name => $value) {
$product_attributes[$i] = array (
'name' => 'pa_' . htmlspecialchars(stripslashes($name)), // set attribute name
'value' => $value, // set attribute value
'position' => 1,
'is_visible' => 1,
'is_variation' => 0,
'is_taxonomy' => 1
);
$i++;
}
update_post_meta($post_id, '_product_attributes', $product_attributes);
}
所以我的问题是:使用PHP从数组中添加自定义产品属性的最简单方法是什么?
答案 0 :(得分:7)
我最近遇到了和你一样的问题。 首先,您需要考虑每个属性的选项。
如果设置为1, is_visible
将使产品页面中的属性可见,并且只有在编辑产品页面中才会显示(如果设置为0)。
is_variation
用于为所述自定义属性创建相同产品的变体。如果设置为1,则向Woocommerce表明存在差异,因此它将查找与原始产品发布相关的帖子,通过属性“ post_parent ”设置为原始产品 post_id ,如'post_type' => "product_variation"
'post_parent' => $original_post_id
用于根据所述自定义属性对产品进行分类。例如,假设衣服是要销售的产品,您可以创建一个名为性别的自定义属性,以根据性别对产品进行分类。
在阅读您的问题时,您只需要在产品页面中显示字符串值的简单自定义属性:
is_taxonomy
所以实现你的循环的方式是这样的:
["Some custom attribute"] => (string)"Something"
["Another custom attribute"] => (string)"Something else"
如果您的某个产品的实施方式存在差异,请首先按照您的方式创建基础产品。然后将所述自定义属性保存为变体。
[loop]
$user_id = get_current_user();
$post_id = wp_insert_post(array(
'post_author' => $user_id,
'post_title' => $item['termek'],
'post_content' => $item['reszletes_leiras'],
'post_status' => 'publish',
'post_type' => "product",
));
wp_set_object_terms( $post_id, 'simple', 'product_type' );
update_post_meta( $post_id, '_visibility', 'visible' );
update_post_meta( $post_id, '_stock_status', 'instock');
update_post_meta( $post_id, 'total_sales', '0' );
update_post_meta( $post_id, '_downloadable', 'no' );
update_post_meta( $post_id, '_virtual', 'no' );
update_post_meta( $post_id, '_regular_price', $item['brutto_ar'] );
update_post_meta( $post_id, '_sale_price', $item['brutto_ar'] );
update_post_meta( $post_id, '_purchase_note', '' );
update_post_meta( $post_id, '_featured', 'no' );
update_post_meta( $post_id, '_weight', '' );
update_post_meta( $post_id, '_length', '' );
update_post_meta( $post_id, '_width', '' );
update_post_meta( $post_id, '_height', '' );
update_post_meta( $post_id, '_sku', $item['id'] );
update_post_meta( $post_id, '_product_attributes', array() );
update_post_meta( $post_id, '_sale_price_dates_from', '' );
update_post_meta( $post_id, '_sale_price_dates_to', '' );
update_post_meta( $post_id, '_price', '' );
update_post_meta( $post_id, '_sold_individually', '' );
update_post_meta( $post_id, '_manage_stock', 'no' );
update_post_meta( $post_id, '_backorders', 'no' );
update_post_meta( $post_id, '_stock', '' );
$i = 0;
$product_attributes = array();
foreach($item['parameterek'] as $key => $value){
$product_attributes[sanitize_title($key)] = array (
'name' => wc_clean($key), // set attribute name
'value' => $value, // set attribute value
'position' => $i,
'is_visible' => 1,
'is_variation' => 0,
'is_taxonomy' => 0
);
$i++;
}
update_post_meta($post_id, '_product_attributes', $product_attributes);
[/loop]
其中$ string_custom_attr_values是由|分隔的变体值的字符串。例如,变体大小的自定义属性,然后是$attr[sanitize_title($custom_attribute_name)] = array(
'name'=> wc_clean($custom_attribute_name),
'value'=> $string_custom_attr_values,
'position' => $position,
'is_visible' => 1,
'is_variation' => 1,
'is_taxonomy' => 0
);
;
然后你需要在$string_custom_attr_values = 'S|M|L|XL'
已经拥有的新循环中创建所述产品的变体,就像之前的尺寸变化示例一样:
$items
希望我已经足够清楚了。