woocommerce_before_order_itemmeta
The WooCommerce Multilingual woocommerce before order itemmeta hook.
Description
Parameters (3)
- 0. $array (callback) =>
array( $this, 'backend_before_order_itemmeta' )
- The array.
- 1. $int (int) =>
100
- The int.
- 2. $int (int) =>
3
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_before_order_itemmeta', $array, $int, $int );
- The following example is for adding a hook callback.
- // define the woocommerce_before_order_itemmeta callback
- function action_woocommerce_before_order_itemmeta( $array, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_before_order_itemmeta', 'action_woocommerce_before_order_itemmeta', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_before_order_itemmeta', 'action_woocommerce_before_order_itemmeta', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /inc/class-wcml-orders.php
- add_action( 'woocommerce_before_order_itemmeta', array( $this, 'backend_before_order_itemmeta' ), 100, 3 );