Skip to content

Instantly share code, notes, and snippets.

@hiranthi
Created March 4, 2013 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hiranthi/5081700 to your computer and use it in GitHub Desktop.
Save hiranthi/5081700 to your computer and use it in GitHub Desktop.
Add autoembed functionality to Shopp product description & summary
<?php
global $wp_embed;
add_filter( 'shopp_product_description', array( $wp_embed, 'autoembed' ), 999 );
add_filter( 'shopp_product_summary', array( $wp_embed, 'autoembed' ), 999 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment