Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created September 30, 2025 14:28
Show Gist options
  • Select an option

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

Select an option

Save plugin-republic/6bbcb69e5f74530bc112806ecec4aaee to your computer and use it in GitHub Desktop.
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