Hi Frank,
Not getting any help from them.
Need your help.
// Check for current page is excluded
global $a3_lazy_load_excludes;
$is_excluded = $a3_lazy_load_excludes->check_excluded();
if ( $is_excluded ) {
return;
}
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 11 );
add_filter( 'a3_lazy_load_html', array( $this, 'filter_html' ), 10, 2 );
$this->iframe_placeholder_url = apply_filters('a3_lazy_load_iframe_placeholder_url', 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');
$this->_placeholder_url = apply_filters( 'a3_lazy_load_placeholder_url', A3_LAZY_LOAD_IMAGES_URL . '/lazy_placeholder.gif' );
// don't to the replacement if a skip class is provided and the image has the class, or if the image is a data-uri
if ( ! ( is_array( $this->_skip_images_classes ) && preg_match( $skip_images_regex, $imgHTML ) ) && ! preg_match( "/src=['\"]data:image/is", $imgHTML ) && ! preg_match( "/src=.*lazy_placeholder.gif['\"]/s", $imgHTML ) && ! $a3_lazy_load_excludes->has_skip_lazy_attribute( $imgHTML ) ) {
$i++;
How to add alt tag on lazy_placeholder.gif?
Thanks,
-
This reply was modified 4 years, 2 months ago by zo.