使用save_post挂钩自动创建Wooccommerce SKU



每当保存新产品时,我都需要创建一个由3个自定义分类单元组成的唯一SKU,但在获取自定义分类单元时遇到困难。这就是我目前所拥有的:

add_action( 'save_post', 'set_sku', 10,3 );
function set_sku( $post_id, $post, $update ) {
// Only want to set if this is a new post!
if ( $update ){
return;
}
// Only set for post_type = post!
if ( 'product' !== $post->post_type ) {
return;
}
$producer = strip_tags( get_the_term_list( $post_id, 'producer') );
$vintage = strip_tags( get_the_term_list( $post_id, 'vintage') );
$bottle_size = strip_tags( get_the_term_list( $post_id, 'bottle_size') );
$your_sku = $producer . "|" . $vintage . "|" . $bottle_size;
if( empty( get_post_meta( $post_id, '_sku', true ) ) ) {
update_post_meta( $post_id, '_sku', $your_sku );
}

}

创建新产品时产生的SKU如下:

||

PS只有一个值分配给每个自定义分类法。

感谢您的帮助。我在前端使用了一个类似的功能,它正确地显示数据,这里有一个示例:

<?php 
$products = new WP_Query( array(
'post_type'         => 'product',
'posts_per_page'    => -1,
) );

if ( $products->have_posts() ) :
while ( $products->have_posts() ) : $products->the_post(); $id = $product->get_id();?>
<tr>
<td><?php echo $producer = strip_tags( get_the_term_list( $id, 'producer') ); ?</td>

简单的解决方案是在函数内使用wc_get_products循环产品。这似乎是浪费资源,希望只使用当前的帖子ID,但它确实有效,而且WP毕竟是建立在循环上的。经过测试和工作,是自动化和控制SKU创建的一种很酷的方式。

add_action( 'save_post', 'set_sku', 10,3 );
function set_sku( $post_id, $post, $update ) {
// Only want to set if this is a new post!
if ( $update ){
return;
}
// Only set for post_type = post!
if ( 'product' !== $post->post_type ) {
return;
}

$args = array(
'limit' => 9999999,
'orderby'  => 'name',
);
$productData = wc_get_products( $args );
foreach ( $productData as $product ){
$productId = $product->get_id();
$producer = strip_tags( get_the_term_list( $productId, 'producer') );
$vintage = strip_tags( get_the_term_list( $productId, 'vintage') );
$bottle_size = strip_tags( get_the_term_list( $productId, 'bottle_size') );
$your_sku = $producer . "|" . $vintage . "|" . $bottle_size;
if( empty( get_post_meta( $post_id, '_sku', true ) ) ) {
update_post_meta( $post_id, '_sku', $your_sku );
}
}

}

相关内容

  • 没有找到相关文章

最新更新