PluginProbe ʕ •ᴥ•ʔ
Gallery : FooGallery / 3.2.6
Gallery : FooGallery v3.2.6
3.3.2 3.3.3 3.3.0 3.1.31 3.1.32 3.1.34 3.1.36 3.2.0 3.2.6 trunk 1.10.3 2.0.24 2.1.34 2.2.44 2.3.3 2.4.32 3.0.6 3.1.11 3.1.12 3.1.13 3.1.20 3.1.25 3.1.26 3.1.26.1 3.1.26.2
foogallery / extensions / default-templates / justified / gallery-justified.php
foogallery / extensions / default-templates / justified Last commit date
class-justified-gallery-template.php 1 month ago gallery-justified.php 1 month ago
gallery-justified.php
21 lines
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit;
5 }
6
7 /**
8 * FooGallery Justified gallery template
9 */
10 global $current_foogallery;
11 global $current_foogallery_arguments;
12 $lightbox = foogallery_gallery_template_setting_lightbox();
13 $foogallery_justified_classes = foogallery_build_class_attribute_safe( $current_foogallery, 'foogallery-lightbox-' . $lightbox );
14 $foogallery_justified_attributes = foogallery_build_container_attributes_safe( $current_foogallery, array( 'class' => $foogallery_justified_classes) );
15 ?>
16 <div <?php echo $foogallery_justified_attributes; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
17 <?php foreach ( foogallery_current_gallery_attachments_for_rendering() as $attachment ) {
18 echo foogallery_attachment_html( $attachment ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
19 } ?>
20 </div>
21