我正在尝试从xml
文件导入产品以吸引商业。该系统每天都会插入和更新产品详细信息。当我插入产品时导入所有数据。但是当我试图更新产品时是重复的。我曾尝试使用post_meta
。但我无法检测到一些产品并重复。请帮助我如何插入没有重复的产品......
这是我的产品插入代码。
$post = array(
'post_author' => get_current_user_id(),
'post_content' => (string)$product->ExtDesc,
'post_status' => "publish",
'post_title' => (string)$product->ItemDesc,
'post_type' => "product",
);
$post_id = wp_insert_post($post, $wp_error);
我在column('item_code')
表格中创建了自定义唯一wp_posts
。但我不能用wp_insert_post
函数插入它。请帮帮我!