woocommerce_before_delete_

woocommerce_before_delete_

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

do_action('woocommerce_before_delete_') is found 1 times:

  • /includes/data-stores/class-wc-product-data-store-cpt.php line 418
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
        return;
    }
     
    if ( $args['force_delete'] ) {
        do_action( 'woocommerce_before_delete_' . $post_type, $id );
        wp_delete_post( $id );
        $product->set_id( 0 );
        do_action( 'woocommerce_delete_' . $post_type, $id );
    } else {
        wp_trash_post( $id );
        $product->set_status( ProductStatus::TRASH );