Created
December 8, 2014 14:30
-
-
Save jbma/29ef48367af08cb8fff2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'wp', '__deactivate_rocket_lazyload_if_page' ); | |
function __deactivate_rocket_lazyload_if_page(){ | |
if( is_page(array('guida-alpina','servizi-guida','biography','outdoor-activities','watashi-ni-tsuite','gaidosabisu','route-dimai-eotvos','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