Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
Created April 23, 2015 12:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlashbrooke/e9acde469ce5cb3aa762 to your computer and use it in GitHub Desktop.
Save hlashbrooke/e9acde469ce5cb3aa762 to your computer and use it in GitHub Desktop.
WordPress: Add oEmbed support for Speaker Deck presentations.
add_action( 'init', 'add_speakerdeck_oembed' );
function add_speakerdeck_oembed() {
wp_oembed_add_provider( 'https://speakerdeck.com/*/*', 'https://speakerdeck.com/oembed.json' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment