Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created April 28, 2022 18:19
Show Gist options
  • Save wpmu-authors/072710dcdd92ce29c0fb04ad9ea72288 to your computer and use it in GitHub Desktop.
Save wpmu-authors/072710dcdd92ce29c0fb04ad9ea72288 to your computer and use it in GitHub Desktop.
// Register oEmbed providers
function custom_oembed_provider() {
wp_oembed_add_provider( 'https://example.com/*', 'https://example.com/oembed', false );
wp_oembed_add_provider( 'https://www.your-domain.com/video-*', 'https://www.yourdomain.com/oembed-provider', true );
}
add_action( 'init', 'custom_oembed_provider' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment