Load oEmbed iframe within ajax call

I figured out that I needed to call specific plateform function to fire the process. In my case Instagram and Facebook : window.instgrm.Embeds.process(); if(typeof FB!==”undefined”){ FB.XFBML.parse(); }

Remove wordpress embed share icon?

This has been answered here: Removing WordPress Icon from oembed link footer . From the answer to that question: Here’s the code to remove the site icon markup from embeds: add_filter(‘get_site_icon_url’,’__return_false’, 10, 3); If you want to remove the entire site-icon + site-title then use this: add_filter(’embed_site_title_html’,’__return_false’); The right thing to do though would be … Read more