Created
October 1, 2025 13:42
-
-
Save plugin-republic/bce7e0c1ed28a5f55193ce571a521bcd to your computer and use it in GitHub Desktop.
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
| <?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