PluginProbe
Meow Gallery / 5.5.5
Meow Gallery v5.5.5
5.5.5 5.5.4 5.5.3 5.5.2 5.5.1 5.5.0 5.4.9 5.4.8 5.4.7 4.1.5 4.1.6 4.1.7 4.1.8 4.1.9 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 All 157 releases
meow-gallery / classes / builders / cell.tpl.php

cell.tpl.php in Meow Gallery 5.5.5, at classes/builders/cell.tpl.php

56 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <figure class="mgl-item"<?php echo wp_kses_post( $attributes ) ?>>
2 <div class="mgl-icon">
3 <div class="mgl-img-container">
4 <?php if ( !$isPreview && $linkUrl ): ?>
5 <a href="<?php echo esc_url( $linkUrl ) ?>">
6 <?=
7 wp_kses( $imgSrc, [
8 'img' => [
9 'src' => true,
10 'srcset' => true,
11 'loading' => true,
12 'sizes' => true,
13 'class' => true,
14 'id' => true,
15 'width' => true,
16 'height' => true,
17 'alt' => true,
18 'align' => true,
19 ]
20 ]
21 );
22 ?>
23 </a>
24 <?php else: ?>
25 <?=
26 wp_kses( $imgSrc, [
27 'img' => [
28 'src' => true,
29 'srcset' => true,
30 'loading' => true,
31 'sizes' => true,
32 'class' => true,
33 'id' => true,
34 'width' => true,
35 'height' => true,
36 'alt' => true,
37 'align' => true,
38 ]
39 ]
40 );
41 ?>
42 <?php endif; ?>
43 </div>
44 </div>
45 <?php if ( !empty( $caption ) ): ?>
46 <figcaption class="mgl-caption">
47 <p><?php echo wp_kses($caption, [
48 'strong' => [], // Bold
49 'b' => [], // Bold alternative
50 'em' => [], // Italic
51 'i' => [] // Italic alternative
52 ]) ?></p>
53 </figcaption>
54 <?php endif; ?>
55 </figure>
56