mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
9 lines
305 B
Text
9 lines
305 B
Text
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' );
|