woocommerce_twenty_twenty_styles filter-hookWC 1.0

Usage

add_filter( 'woocommerce_twenty_twenty_styles', 'wp_kama_woocommerce_twenty_styles_filter' );

/**
 * Function for `woocommerce_twenty_twenty_styles` filter-hook.
 * 
 * @param  $styles 
 *
 * @return 
 */
function wp_kama_woocommerce_twenty_styles_filter( $styles ){

	// filter...
	return $styles;
}
$styles
-

Where the hook is called

WC_Twenty_Twenty::enqueue_styles()
woocommerce_twenty_twenty_styles
woocommerce/includes/theme-support/class-wc-twenty-twenty.php 102
return apply_filters( 'woocommerce_twenty_twenty_styles', $styles );

Where the hook is used in WooCommerce

Usage not found.