EduardET

Change woocommerce loop product title heading

Feb 9th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. if ( ! function_exists( 'woocommerce_template_loop_product_title' ) ) {
  2.     /**
  3.      * Show the product title in the product loop. By default this is an H3.
  4.      */
  5.     function woocommerce_template_loop_product_title() {
  6.         $tag = apply_filters( 'woocommerce_template_loop_product_title_tag', 'h4' );
  7.         echo '<' . tag_escape( $tag ) . ' class="woocommerce-loop-product__title">' . get_the_title() . '</' . tag_escape( $tag ) . '>';
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment