woocommerce_order_items_meta_get_formatted
The WooCommerce Multilingual woocommerce order items meta get formatted hook.
Description
Parameters (3)
- 0. $array (callback) =>
array( $this, 'filter_formatted_items' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'woocommerce_order_items_meta_get_formatted', $array, $int, $int );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the woocommerce_order_items_meta_get_formatted callback
- function filter_woocommerce_order_items_meta_get_formatted( $array, $int, $int ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'woocommerce_order_items_meta_get_formatted', 'filter_woocommerce_order_items_meta_get_formatted', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'woocommerce_order_items_meta_get_formatted', 'filter_woocommerce_order_items_meta_get_formatted', 10, 3 );
Defined (1)
The filter is defined in the following location(s).
- /inc/class-wcml-emails.php
- add_filter( 'woocommerce_order_items_meta_get_formatted', array( $this, 'filter_formatted_items' ), 10, 2 );