Skip to content

Instantly share code, notes, and snippets.

@gareth-gillman
Last active October 3, 2017 22:50
Show Gist options
  • Save gareth-gillman/5a471f2835830327b4d58af23214785a to your computer and use it in GitHub Desktop.
Save gareth-gillman/5a471f2835830327b4d58af23214785a to your computer and use it in GitHub Desktop.
function product_desc_shortcode( $post_excerpt )
{
$price = do_shortcode( '[my_shortcode]' );
return $price;
return $content;
}
add_filter('woocommerce_short_description', 'product_desc_shortcode', 10, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment