Skip to content

Instantly share code, notes, and snippets.

@huytrq
Created August 19, 2019 13:53
Show Gist options
  • Select an option

  • Save huytrq/a6c4d362518bc6d46e80f4a5375239b6 to your computer and use it in GitHub Desktop.

Select an option

Save huytrq/a6c4d362518bc6d46e80f4a5375239b6 to your computer and use it in GitHub Desktop.
Add lazyload to image and iframe
<?php
function ht_add_lazy_loading($content) {
$content = preg_replace('/src="/', loading="lazy" src="', $content);
return $content;
}
add_filter('the_content', ht_add_lazy_loading);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment