woocommerce_order_formatted_line_subtotal хук-фильтрWC 1.0

Использование

add_filter( 'woocommerce_order_formatted_line_subtotal', 'wp_kama_woocommerce_order_formatted_line_subtotal_filter', 10, 3 );

/**
 * Function for `woocommerce_order_formatted_line_subtotal` filter-hook.
 * 
 * @param  $subtotal 
 * @param  $item     
 * @param  $that     
 *
 * @return 
 */
function wp_kama_woocommerce_order_formatted_line_subtotal_filter( $subtotal, $item, $that ){

	// filter...
	return $subtotal;
}
$subtotal
-
$item
-
$that
-

Где вызывается хук

WC_Abstract_Order::get_formatted_line_subtotal()
woocommerce_order_formatted_line_subtotal
woocommerce/includes/abstracts/abstract-wc-order.php 2120
return apply_filters( 'woocommerce_order_formatted_line_subtotal', $subtotal, $item, $this );

Где используется хук в WooCommerce

Использование не найдено.