Skip to content

Instantly share code, notes, and snippets.

@jbma
Created November 11, 2014 18:06
Show Gist options
  • Save jbma/2bd5be69e6eadcc0b52b to your computer and use it in GitHub Desktop.
Save jbma/2bd5be69e6eadcc0b52b to your computer and use it in GitHub Desktop.
<?php
add_filter( 'wp', '__deactivate_rocket_lazyload_if_page' );
function __deactivate_rocket_lazyload_if_page()
{
if( is_page(array('guida-alpina','en/biography','jp/watashi-ni-tsuite','en/true-stories/route-dimai-eotvos','storie-vere/via-dimai-eotvos')) ) {
add_filter( 'do_rocket_lazyload', '__return_false' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment