Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created June 14, 2019 18:58
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukecav/510cc61ad34e3df2cac661e28a2a514c to your computer and use it in GitHub Desktop.
Save lukecav/510cc61ad34e3df2cac661e28a2a514c to your computer and use it in GitHub Desktop.
Native Lazy Load to oEmbed iFrames in WordPress
function lazy_embed_oembed_html($html, $url, $attr){
$html = str_replace('<iframe ','<iframe loading="lazy" ',$html);
return $html;
}
add_filter('embed_oembed_html', 'lazy_embed_oembed_html',10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment