我的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();
答案 0 :(得分:2)
请尝试以下操作,每次将更新您的产品200以避免出现问题
(如果您也有变量产品,则post_type
参数必须为product
和product_variation
):
add_action( 'woocommerce_loaded', 'update_products_by_x' );
function update_products_by_x(){
$limit = 200;
// getting all products
$products_ids = get_posts( array(
'post_type' => 'product', // or ['product','product_variation'],
'numberposts' => $limit,
'post_status' => 'publish',
'fields' => 'ids',
'meta_query' => array( array(
'key' => '_sync_updated',
'compare' => 'NOT EXISTS',
) )
) );
// Loop through product Ids
foreach ( $products_ids as $product_id ) {
// Get the WC_Product object
$product = wc_get_product($product_id);
// Mark product as updated
$product->update_meta_data( '_sync_updated', true );
$product->save();
}
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
每次浏览网站页面时,都会触发该功能。将产品处理200次会更安全,并且可以避免超时或错误。
您可以将该数字增加到500,例如,将$limit
设置为500