Encode URLs in layered nav widget
This commit is contained in:
parent
bf8feefb6d
commit
3df4a82154
|
@ -283,7 +283,7 @@ class WC_Widget_Layered_Nav extends WP_Widget {
|
|||
|
||||
echo '<li ' . $class . '>';
|
||||
|
||||
echo ( $count > 0 || $option_is_set ) ? '<a href="' . apply_filters( 'woocommerce_layered_nav_link', $link ) . '">' : '<span>';
|
||||
echo ( $count > 0 || $option_is_set ) ? '<a href="' . esc_url( apply_filters( 'woocommerce_layered_nav_link', $link ) ) . '">' : '<span>';
|
||||
|
||||
echo $term->name;
|
||||
|
||||
|
|
Loading…
Reference in New Issue