jQuery(document).ready(function($){ if (navigator.platform == "iPad") return; jQuery("img.wp-post-image").lazyload({ effect:"fadeIn", placeholder: "$placeholdergif" }); }); EOF; } function jquery_lazy_load_post_image_html( $html, $post_id, $post_image_id ) { $log = false; // Get the source of the image $doc=new DOMDocument(); $doc->loadHTML($html); $xml=simplexml_import_dom($doc); $images=$xml->xpath('//img'); if($log) $scriptToAdd = ''; $html = $scriptToAdd.$html; } return $html; } add_action('wp_head', 'jquery_lazy_load_headers', 5); add_action('wp_head', 'jquery_lazy_load_ready', 12); add_filter( 'post_thumbnail_html', 'jquery_lazy_load_post_image_html', 10, 3 ); ?>