Last active
October 1, 2025 12:44
-
-
Save plugin-republic/df5af0b49d87db7df69c52a12f3464f4 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_short_description. | |
| * Modify the HTML for the short description. | |
| */ | |
| function plugin_republic_short_description( $short_description ) { | |
| // Modify the $short_description HTML here | |
| return $short_description; | |
| } | |
| add_filter( 'woocommerce_short_description', 'plugin_republic_short_description', 10, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment