woocommerce_template_loop_product_link_open()
Insert the opening anchor tag for products in the loop.
Contents
Description Description
Source Source
File: includes/wc-template-functions.php
function woocommerce_template_loop_product_link_open() { global $product; $link = apply_filters( 'woocommerce_loop_product_link', get_the_permalink(), $product ); echo '<a href="' . esc_url( $link ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">'; }