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

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

add_filter( 'woocommerce_stock_html', 'wp_kama_woocommerce_stock_html_filter', 10, 3 );

/**
 * Function for `woocommerce_stock_html` filter-hook.
 * 
 * @param  $html                      
 * @param  $availability_availability 
 * @param  $product                   
 *
 * @return 
 */
function wp_kama_woocommerce_stock_html_filter( $html, $availability_availability, $product ){

	// filter...
	return $html;
}
$html
-
$availability_availability
-
$product
-

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

wc_get_stock_html()
woocommerce_stock_html
woocommerce/includes/wc-template-functions.php 3658
$html = apply_filters( 'woocommerce_stock_html', $html, $availability['availability'], $product );

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

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