我希望它跳过产品上传,如果产品名称已经存在于数据库中。我有这样一个代码,但在这种方式上传不启动,并给出一个错误。
add_filter( 'wp_all_import_is_post_to_create', 'my_is_post_to_create', 10, 3 );
function my_is_post_to_create( $continue_import, $data, $import_id ) {
global $product;
$product = wc_get_product(get_the_ID());
$current_title = $product->get_name();
$new_title = $data['name'];
if ( $import_id == 34 ) {
if ( $new_title == $current_title ) {
return false;
}
}
return true;
}
1条答案
按热度按时间xytpbqjk1#
我想这应该行得通: