Skip to content

Instantly share code, notes, and snippets.

@jmabbas
Created January 14, 2026 11:11
Show Gist options
  • Select an option

  • Save jmabbas/cc8ccf36c65647a7ebb79d9b1f7d17f4 to your computer and use it in GitHub Desktop.

Select an option

Save jmabbas/cc8ccf36c65647a7ebb79d9b1f7d17f4 to your computer and use it in GitHub Desktop.
MyTravel - Product title h2 to h3
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