我的Woocommerce产品有问题。如果我仅更新产品(编辑产品并单击“更新”按钮),而没有任何更改,则此问题已得到解决。
我的网站上有大约2000种产品,然后我正在考虑使用function.php文件中的函数进行此操作。
应该是这样的,我只需要更新产品的行。
function update_all_products(){
// getting all products
$products = get_posts( $args );
// Going through all products
foreach ( $products as $key => $value ) {
// the product ID
$product_id = $value->ID;
// update product
update_post_meta...(NEED HELP HERE)...
} //..end foreach
}
// fire the function
update_all_products();
慕桂英546537
相关分类