woocommerce_dropdown_variation_attribute_options_html
Usage
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
- -
Where the hook is called
woocommerce_dropdown_variation_attribute_options_html
woocommerce/includes/wc-template-functions.php 3401
echo apply_filters( 'woocommerce_dropdown_variation_attribute_options_html', $html, $args );