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

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

add_filter( 'woocommerce_format_content', 'wp_kama_woocommerce_format_content_filter', 10, 2 );

/**
 * Function for `woocommerce_format_content` filter-hook.
 * 
 * @param  $apply_filters 
 * @param  $raw_string    
 *
 * @return 
 */
function wp_kama_woocommerce_format_content_filter( $apply_filters, $raw_string ){

	// filter...
	return $apply_filters;
}
$apply_filters
-
$raw_string
-

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

wc_format_content()
woocommerce_format_content
woocommerce/includes/wc-formatting-functions.php 1116
return apply_filters( 'woocommerce_format_content', apply_filters( 'woocommerce_short_description', $raw_string ), $raw_string );

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

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