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

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

add_filter( 'woocommerce_dropdown_variation_attribute_options_html', 'wp_kama_woocommerce_dropdown_variation_attribute_options_html_filter', 10, 2 );

/**
 * Function for `woocommerce_dropdown_variation_attribute_options_html` filter-hook.
 * 
 * @param  $html 
 * @param  $args 
 *
 * @return 
 */
function wp_kama_woocommerce_dropdown_variation_attribute_options_html_filter( $html, $args ){

	// filter...
	return $html;
}
$html
-
$args
-

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

wc_dropdown_variation_attribute_options()
woocommerce_dropdown_variation_attribute_options_html
woocommerce/includes/wc-template-functions.php 3237
echo apply_filters( 'woocommerce_dropdown_variation_attribute_options_html', $html, $args );

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

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