woocommerce_layered_nav_link

woocommerce_layered_nav_link

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_layered_nav_link') is found 1 times:

  • /includes/widgets/class-wc-widget-layered-nav.php line 450
    				$link = str_replace( '%2C', ',', $link );
    			}
    
    			if ( $count > 0 || $option_is_set ) {
    				$link      = apply_filters( 'woocommerce_layered_nav_link', $link, $term, $taxonomy );
    				$term_html = '<a rel="nofollow" href="' . esc_url( $link ) . '">' . esc_html( $term->name ) . '</a>';
    			} else {
    				$link      = false;
    				$term_html = '<span>' . esc_html( $term->name ) . '</span>';
    			}