woocommerce_email_order_items_table filter-hookWC 1.0

Usage

add_filter( 'woocommerce_email_order_items_table', 'wp_kama_woocommerce_email_order_items_table_filter', 10, 2 );

/**
 * Function for `woocommerce_email_order_items_table` filter-hook.
 * 
 * @param  $ob_get_clean 
 * @param  $order        
 *
 * @return 
 */
function wp_kama_woocommerce_email_order_items_table_filter( $ob_get_clean, $order ){

	// filter...
	return $ob_get_clean;
}
$ob_get_clean
-
$order
-

Where the hook is called

wc_get_email_order_items()
woocommerce_email_order_items_table
woocommerce/includes/wc-template-functions.php 3434
return apply_filters( 'woocommerce_email_order_items_table', ob_get_clean(), $order );

Where the hook is used in WooCommerce

Usage not found.