woocommerce_layered_nav_default_query_type filter-hookWC 1.0

Usage

add_filter( 'woocommerce_layered_nav_default_query_type', 'wp_kama_woocommerce_layered_nav_default_query_type_filter' );

/**
 * Function for `woocommerce_layered_nav_default_query_type` filter-hook.
 * 
 * @param  $string 
 *
 * @return 
 */
function wp_kama_woocommerce_layered_nav_default_query_type_filter( $string ){

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

Where the hook is called

WC_Query::get_layered_nav_chosen_attributes()
woocommerce_layered_nav_default_query_type
woocommerce/includes/class-wc-query.php 937
self::$chosen_attributes[ $taxonomy ]['query_type'] = $query_type ? $query_type : apply_filters( 'woocommerce_layered_nav_default_query_type', 'and' );

Where the hook is used in WooCommerce

Usage not found.