Created
January 14, 2026 11:11
-
-
Save jmabbas/cc8ccf36c65647a7ebb79d9b1f7d17f4 to your computer and use it in GitHub Desktop.
MyTravel - Product title h2 to h3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function woocommerce_template_loop_product_title() { | |
| echo '<h3 class="' . esc_attr( apply_filters( 'woocommerce_product_loop_title_classes', 'woocommerce-loop-product__title' ) ) . '">' . get_the_title() . '</h3>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment