Skip to content

Instantly share code, notes, and snippets.

@mksddn
Last active January 11, 2024 13:36
Show Gist options
  • Save mksddn/a5954917a4d0b9850e9013a5673d2b8a to your computer and use it in GitHub Desktop.
Save mksddn/a5954917a4d0b9850e9013a5673d2b8a to your computer and use it in GitHub Desktop.
WP Lazy load for images
/**
* Добавление loading="lazy" к изображениям, добавленным через редактор
*/
add_filter ('the_content', 'add_lazy_load_tag');
function add_lazy_load_tag($content) {
return preg_replace('/img/', 'img loading="lazy"', $content);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment