woocommerce_new_order_item

woocommerce_new_order_item

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action
See hook in action

See hook in core

Displaying hooks found in version: woocommerce.9.7.1

do_action('woocommerce_new_order_item') is found 2 times:

  • /includes/data-stores/abstract-wc-order-item-type-data-store.php line 93
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
        $item->apply_changes();
        $this->clear_cache( $item );
     
        do_action( 'woocommerce_new_order_item', $item->get_id(), $item, $item->get_order_id() );
    }
     
    /**
     * Update a order item in the database.
     *
     * @param WC_Order_Item $item Order item object.
  • /includes/wc-order-item-functions.php line 39
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
        $data_store = WC_Data_Store::load( 'order-item' );
        $item_id    = $data_store->add_order_item( $order_id, $item_array );
        $item       = WC_Order_Factory::get_order_item( $item_id );
     
        do_action( 'woocommerce_new_order_item', $item_id, $item, $order_id );
     
        return $item_id;
    }
     
    /**
     * Update an item for an order.

See this hook used in plugins: