- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在网页上有一个相当大的产品数据库。该网页是用 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 从数组添加自定义产品属性的最简单方法是什么?
最佳答案
我最近遇到了和你一样的问题。首先,您需要考虑每个属性的选项。
is_visible
如果设置为 1 将使该属性在产品页面中可见,如果设置为 0 则仅在编辑产品页面中可见。
is_variation
用于为所述自定义属性创建相同产品的变体。如果设置为 1,则向 Woocommerce 表明存在变体,因此它将通过属性 'post_parent' 设置为原始产品 post_id 如 '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]
如果您的某个产品有变体,实现方式是,首先像您已经做的那样创建基础产品。然后将所述自定义属性保存为变体。
$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 是由 | 分隔的变体值组成的字符串.例如,变体尺寸的自定义属性 $string_custom_attr_values = 'S|M|L|XL'
;
然后您将需要在已有的 $items
循环中创建一个新循环来创建所述产品的变体,类似于前面的尺寸变体示例:
$string_custom_attr_values = 'S|M|L|XL';
$arr_custom_attr_values = explode("|", $string_custom_attr_values);
$total_variations = count($arr_custom_attr_values);
$variation_post_id = $post_id;
for($i = 1; $i <= $total_variations; $i++) {
$variation_post_id += $i;
$variation_post = array(
'post_title' => 'Variation #' . $variation_post_id . ' of ' . $item['termek'],
'post_name' => 'product-' . $variation_post_id . '-variation',
'post_status' => 'publish',
'post_parent' => $post_id,
'post_type' => 'product_variation',
'guid' => home_url() . '/product_variation/product-' . $variation_post_id . '-variation',
'menu_order' => $i
);
// Insert the variation post into the database
$variation_post_id = wp_insert_post( $variation_post );
update_post_meta( $variation_post_id, 'attribute_'.$custom_attribute_name, $arr_custom_attr_values[$i-1]);
/*Rest of the post_meta like in the base product*/
}//end for
希望我已经说得够清楚了。
关于php - 如何以编程方式在 WooCommerce 中添加新的自定义产品属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39828377/
[编辑:在 functions.php 中添加代码并省略代码 WC 文件中的更改时,它实际上起作用了。重要提示:它仅在 ONE 属性存在时有效。但是,当有 2 个属性(例如尺寸和颜色)时,它就不起作用
我使用以下方法获取购物车中产品的版本ID。 $cartdetails = $woocommerce->cart->get_cart(); foreach($cartdetails as $ca
我目前使用 $order = new WC_Order($order_id); $order->update_status('completed', 'Order has been delivered
您好,我无法从 woocommerce 订单送货地址获取,我收到错误: fatal error :在 .. 中的非对象上调用成员函数 get_formatted_address() 我正在使用代码:
我不是在谈论向产品添加属性,而是我想添加属性本身.. 您可以从“产品”->“属性”下的 UI 执行此操作,但从代码中它是如何完成的(例如:要调用哪些函数或要更新的表)? 最佳答案 属性只是一个自定义分
是否可以使产品变化来改变价格? 例如,我有一个基本产品及其变体: 数量 -10 -20 -50 颜色 - 蓝色 -红色 项目 -是的 -没有 我有数量的价格,不管是什么颜色。但是,如果您选择“项目-否
有没有办法将其他收件人添加到 woocommerce 发票邮件中。我尝试使用“woocommerce_email_headers” Hook ,但它不起作用: add_filter( 'woocomm
我不是在谈论向产品添加属性,而是我想添加属性本身.. 您可以从“产品”->“属性”下的 UI 执行此操作,但从代码中它是如何完成的(例如:要调用哪些函数或要更新的表)? 最佳答案 属性只是一个自定义分
只是想看看是否有办法为我的送货选项添加工具提示或弹出窗口,以便在客户悬停或点击(通过移动设备)时更详细地向客户解释此选项的含义? 最佳答案 简单的解决方案是通过将以下内容添加到您的 functions
如何获取 woocommerce 中的类别列表?使用这段代码,我得到了 wordpress 类别列表: function gaga_lite_category_lists(){ $catego
我一直试图在 WooCommerce 上禁用产品价格四舍五入,但没有成功。即使我在 WooCommerce > Settings > General > Number of decimals 上将 d
我一直在尝试定制 woocommerce 中的相关产品。我使用 woocommerce_output_related_products_args 添加 meta_query 选项,但它们没有效果,这是
由于 WooCommerce 2.1 页面(例如订单接收)已被删除并替换为 WC 端点。我的结帐页面有一个自定义页面模板 (page-checkout.php),现在所有结帐端点也都在使用这个自定义页
我正在向 WooCommerce 的结帐页面添加额外的字段, 我已经添加了基本的文本字段,但我想要一个带有几个选项的下拉列表或选择框, 这是我到目前为止所做的,但我在某处犯了错误 $fields['b
我试图在我的 invoice.php 中拼出 WooCommerce 订单总额模板文件可以达到订单总金额。 首先我试过: $total = $order->get_total(); - format
我需要在购物车页面和结帐页面中显示的价格(小计、总计...)后添加文字提及。 我知道如何在单个页面和商店页面上执行此操作,但不知道如何在其他页面上执行此操作。我唯一找到的就是这段代码,但它不起作用。
在 Woocommerce 中,在管理产品列表中,我应该需要为特定属性过滤产品。 根据“Add a filter dropdown for product tags in woocommerce ad
Woocommerce 有一个带有“woocommerce”类的 div 我想添加另一个类或删除该类。那是哪个文件? 最佳答案 虽然 WooCommerce 没有提供任何支持的方法来实现这一点
您好,目前我想获取 woocommerce 中的税率名称。我有什么办法可以得到这张图中圈出的值:/image/pyGAH.png 我当前的代码: $items = $order->get_items(
在 Woocommerce 中,我尝试显示可变产品的销售日期。 我找到了a code ,如果我将此代码准确地发布在functions.php中,它不会执行任何操作。我尝试修改它,因为我只需要在起始页上
我是一名优秀的程序员,十分优秀!