Created
December 5, 2016 23:12
-
-
Save matt40k/78ecc35f852e7bf52e0aded1f54a5e23 to your computer and use it in GitHub Desktop.
Notes on embed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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