How to Exclude Posts from Lazy Loading?
-
Good Day,
We’re using your plugin on a staging site. So far, so good.
Question: How can we exclude all images contained in Events, Portfolio Items, and Posts from being lazy loaded?
Helpful: The developers of Perfmatters shared the code snippet below for their plugin (lazy loading feature). Was hoping you can come up with a similar one.
add_filter('perfmatters_lazyload', function($lazyload) {
if(is_singular(array('post', 'avada_portfolio', 'tribe_events'))) {
return false;
}
return $lazyload;
});Note: A code snippet like the one above would serve us better over excluding each post (i.e., post URL) via your exclusions filter. We have too many of them.
Thank you!
- The topic ‘How to Exclude Posts from Lazy Loading?’ is closed to new replies.