Jesus In The Old Testament Volume 1
60,00 kr.
På lager
add_action( 'before_delete_post', 'wogc_before_delete_post', 1, 2 ); /** * Remove synchronized child products when a main product is deleted. * * @param int $postid The ID of the product being deleted. * @param WP_Post $post The WordPress post object for the product. */ function wogc_before_delete_post( $postid, $post ) { $PS = new WooGC_PS(); // Check if the product is a main product if ( ! $PS->is_main_product( $postid ) ) { return; } global $blog_id; $main_product = new WooGC_PS_main_product( $postid ); foreach ( $main_product->get_children() as $child_shop_id ) { $child_product_id = $PS->get_product_synchronized_at_shop( $postid, $blog_id, $child_shop_id ); if ( $child_product_id > 0 ) { switch_to_blog( $child_shop_id ); wp_delete_post( $child_product_id, false ); // Set to true to force deletion restore_current_blog(); } } }
60,00 kr.
På lager