Skip to content

Instantly share code, notes, and snippets.

@jbma
Created November 16, 2015 11:12
Show Gist options
  • Save jbma/71b36bfd6c054e21bb69 to your computer and use it in GitHub Desktop.
Save jbma/71b36bfd6c054e21bb69 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'wp', '__deactivate_rocket_lazyload_if_only_content' );
function __deactivate_rocket_lazyload_if_only_content()
{
if( isset($_GET['content-only']) && $_GET['content-only'] == 1 ) {
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