tiled-gallery-carousel-without-jetpack/tiled-gallery.php, line number 265.
1 2 3 4 5 6 7 8 9 10 |
// $output .= '<div class="tiled-gallery-item tiled-gallery-item-' . esc_attr( $size ) . '"><a href="' . esc_url( $link ) . '"><img ' . $this->generate_carousel_image_args( $image ) . ' src="' . esc_url( $img_src['url'] ) . '" width="' . esc_attr( $image->width ) . '" height="' . esc_attr( $image->height ) . '" align="left" title="' . esc_attr( $image_title ) . '" /></a>'; $a[0] = ''; $a[1] = ''; if ($this->atts['link'] !== 'none') { $a[0] = '<a href="' . esc_url( $link ) . '">'; $a[1] = '</a>'; } $output .= '<div class="tiled-gallery-item tiled-gallery-item-' . esc_attr( $size ) . '">' . $a[0] . '<img ' . $this->generate_carousel_image_args( $image ) . ' src="' . esc_url( $img_src['url'] ) . '" width="' . esc_attr( $image->width ) . '" height="' . esc_attr( $image->height ) . '" align="left" title="' . esc_attr( $image_title ) . '" />' . $a[1]; |