Disable lazyload on search results in WP Rocket

Disable lazyload on search results in WP Rocket on child sites.

Snippet Type

Execute on Child Sites

Snippet

function deactivate_on_search_results() {

	// Disable LazyLoad for images on a search results template.
	if ( is_search() ) {
		add_filter( 'do_rocket_lazyload', '__return_false' );
		remove_action( 'wp_footer', 'rocket_lazyload_script', PHP_INT_MAX );
	}
}
add_action( 'deactivate_on_search_results' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.