【发布时间】:2021-12-17 12:25:45
【问题描述】:
我正在使用下面的 sn-p,但是在删除 WooCommerce 变体时,它会触发代码删除图像
无论如何我只能在删除父项而不是变体时触发这个?
// Automatically Delete Woocommerce Images After Deleting a Product
add_action( 'before_delete_post', 'delete_product_images', 10, 1 );
function delete_product_images( $post_id )
{
$product = wc_get_product( $post_id );
if ( !$product ) {
return;
}
$featured_image_id = $product->get_image_id();
$image_galleries_id = $product->get_gallery_image_ids();
if( !empty( $featured_image_id ) ) {
wp_delete_post( $featured_image_id );
}
if( !empty( $image_galleries_id ) ) {
foreach( $image_galleries_id as $single_image_id ) {
wp_delete_post( $single_image_id );
}
}
}
【问题讨论】:
-
这似乎是一个常见问题stackoverflow.com/questions/21075865/…
标签: wordpress woocommerce hook