Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
Last active October 26, 2021 04:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webtoffee-git/1a2283844f850dff1129912d811ea9ce to your computer and use it in GitHub Desktop.
Save webtoffee-git/1a2283844f850dff1129912d811ea9ce to your computer and use it in GitHub Desktop.
Change the H2 tag on the related products heading to div tag - Related Products for WooCommerce (https://wordpress.org/plugins/wt-woocommerce-related-products/)
<?php // do not copy this line
add_filter('wt_related_products_heading', 'wt_crp_alter_title_tag');
function wt_crp_alter_title_tag($title) {
$title = preg_replace("/<h2>(.+?)<\/h2>/is", "<div>$1</div>", $title);
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment