gallery-simple_portfolio.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * FooGallery portfolio gallery template |
| 4 | */ |
| 5 | global $current_foogallery; |
| 6 | global $current_foogallery_arguments; |
| 7 | |
| 8 | $lightbox = foogallery_gallery_template_setting_lightbox(); |
| 9 | $caption_position = foogallery_gallery_template_setting( 'caption_position', '' ); |
| 10 | if ( 'none' == foogallery_gallery_template_setting( 'caption_title_source' ) && 'none' == foogallery_gallery_template_setting( 'caption_desc_source' ) ) { |
| 11 | $current_foogallery_arguments['caption_preset'] = 'none'; |
| 12 | } |
| 13 | $foogallery_portfolio_classes = foogallery_build_class_attribute_safe( $current_foogallery, $caption_position, 'foogallery-lightbox-' . $lightbox ); |
| 14 | $foogallery_portfolio_attributes = foogallery_build_container_attributes_safe( $current_foogallery, array( 'class' => $foogallery_portfolio_classes ) ); |
| 15 | |
| 16 | ?><div <?php echo $foogallery_portfolio_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> |