Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save plugin-republic/bce7e0c1ed28a5f55193ce571a521bcd to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/bce7e0c1ed28a5f55193ce571a521bcd to your computer and use it in GitHub Desktop.
<?php
/**
* Hook: woocommerce_product_upsells_products_heading.
* Modify the text in the upsells section title.
*/
function plugin_republic_product_upsells_products_heading( $text ) {
// Modify the $text here
return $text;
}
add_filter( 'woocommerce_product_upsells_products_heading', 'plugin_republic_product_upsells_products_heading', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment