PluginProbe
Meow Gallery / 4.1.6
Meow Gallery v4.1.6
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 4.1.6, at classes/builders/cell.tpl.php

19 lines 515 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <figure class="mgl-item"<?php echo esc_attr( $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 <?php echo wp_kses_post( $imgSrc ) ?>
7 </a>
8 <?php else: ?>
9 <?php echo wp_kses_post( $imgSrc ) ?>
10 <?php endif; ?>
11 </div>
12 </div>
13 <?php if ( $caption ): ?>
14 <figcaption class="mgl-caption">
15 <p><?php echo wp_kses_post( $caption ) ?></p>
16 </figcaption>
17 <?php endif; ?>
18 </figure>
19