Created
September 30, 2025 14:28
-
-
Save plugin-republic/6bbcb69e5f74530bc112806ecec4aaee 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
| add_filter( 'woocommerce_short_description', 'plugin_republic_short_description', 5 ); | |
| function plugin_republic_short_description( $short_description ) { | |
| $short_description = sprintf( | |
| '%s<p>Special offer!</p>', | |
| $short_description | |
| ); | |
| return $short_description; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment