Last active
January 6, 2020 08:18
-
-
Save glueckpress/08d9cd875ceec64bd31798c5325d2197 to your computer and use it in GitHub Desktop.
[WordPress][WP Rocket] [deprecated] Wrapper function: Applies WP Rocket’s LazyLoad to wp_get_attachment_image()
This file contains 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 | |
/** | |
* Wrapper function: Applies WP Rocket’s LazyLoad to wp_get_attachment_image() | |
* | |
* @link https://developer.wordpress.org/reference/functions/wp_get_attachment_image/ | |
* @link https://github.com/wp-media/wp-rocket/blob/v2.10.9/inc/front/lazyload.php#L24-L47 | |
* | |
* @param int $attachment_id (Required) Image attachment ID. | |
* @param string|array $size (Optional) Image size. Accepts any | |
* valid image size, or an array of width | |
* and height values in pixels (in that order). | |
* @param boolean $icon (Optional) Whether the image should be | |
* treated as an icon. | |
* @param string|array $attr Attributes for the image markup. | |
* @return string HTML img element or empty string on failure. | |
*/ | |
function wp_rocket__wp_get_attachment_image__lazyload( $attachment_id, $size = 'thumbnail', $icon = false, $attr = '' ) { | |
$image_html = wp_get_attachment_image( $attachment_id, $size, $icon, $attr ); | |
if( function_exists( 'rocket_lazyload_images' ) ) { | |
return rocket_lazyload_images( $image_html ); | |
} | |
return $image_html; | |
} |
Sorry, @Jeppeskovsgaard, I don’t work for WP Rocket anymore, and I’m afraid I won’t be able to make time to look into this. I’ve updated the description with a hint, though.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The functions
rocket_lazyload_images
,rocket_lazyload_replace_callback()
androcket_is_excluded_lazyload()
seems to be deprecated since version 3.3. Could you please update the snippet @glueckpress ?