Created
April 28, 2022 18:19
-
-
Save wpmu-authors/072710dcdd92ce29c0fb04ad9ea72288 to your computer and use it in GitHub Desktop.
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 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