Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mihdan/b31cd90bbd096e25d3d0aa449d5b78c8 to your computer and use it in GitHub Desktop.

Select an option

Save mihdan/b31cd90bbd096e25d3d0aa449d5b78c8 to your computer and use it in GitHub Desktop.
Wordpress add lazy loading all content
function enzothecat_add_lazy_loading($content) {
$content = preg_replace('/src="/', 'loading="lazy" src="', $content);
return $content;
}
add_filter('the_content', 'enzothecat_add_lazy_loading');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment