Skip to content

Instantly share code, notes, and snippets.

@matt40k
Created December 5, 2016 23:12
Show Gist options
  • Save matt40k/78ecc35f852e7bf52e0aded1f54a5e23 to your computer and use it in GitHub Desktop.
Save matt40k/78ecc35f852e7bf52e0aded1f54a5e23 to your computer and use it in GitHub Desktop.
Notes on embed
// Register oEmbed providers
function youtube_oembed_provider() {
wp_oembed_add_provider( '#https?://(www.)?youtube.com/watch.*#i', 'http://www.youtube.com/oembed/', true );
}
add_action( 'init', 'youtube_oembed_provider' );
https://generatewp.com/oembed/?clone=jk4nyRY
https://codex.wordpress.org/Embeds
https://github.com/Microsoft/moodle-filter_oembed/pull/8/commits/14ec7754bff84431434d8984600d02e8bddaf1af
https://developer.wordpress.com/docs/embedding-on-wordpress-com/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment