Created
December 19, 2013 20:13
-
-
Save ajiseco/8045449 to your computer and use it in GitHub Desktop.
WP: gallery.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
Template file that renders the FOLIO page | |
Inspiration: RenzoJohnson.com & spartantheme.com - !!!!!!!!!!!!!!!!!!!!!!!!! make sure 'Add hidden images' is check in the admin. | |
**/ | |
?> | |
<?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?> | |
<?php if (!empty ($gallery)) : ?> | |
<?php $i=1; ?> | |
<li class="wch-galleryoverview <?php echo $gallery->title ?>" id="<?php echo $gallery->anchor ?>" data-id="<?php echo $gallery->anchor ?>" data-type="<?php echo $gallery->description ?>"> | |
<h2 class="gallery-title"><?php echo $gallery->title ?></h2> | |
<?php foreach ($images as $image) : ?> | |
<?php if ($i < 2) : ?> | |
<div id="wch-image-<?php echo $image->pid ?>" class="ngg-gallery-thumbnail-box" <?php echo $image->style ?> > | |
<a data-title-id="<?php echo $image->pid ?>" caption="<?php echo $gallery->title ?>" href="<?php echo $image->imageURL ?>" <?php echo $image->thumbcode ?> title="<?php echo $gallery->title ?>"> | |
<img class="grayscale" title="<?php echo $image->alttext ?>" alt="<?php echo $image->alttext ?>" src="<?php echo $image->thumbnailURL ?>" <?php echo $image->size ?> /> | |
</a> | |
<div id="<?php echo $image->pid ?>" class="hidden"><?php echo $gallery->title ?></div> | |
</div> | |
<?php else : ?> | |
<a style="display:none" href="<?php echo $image->imageURL ?>" <?php echo $image->thumbcode ?>>link</a> | |
<?php endif; $i++; ?> | |
<?php endforeach; ?> | |
<h3 class="gallery-title"><a class="plans pur-plans" href="#wpcf7-f208-p167-o1-<?php echo $gallery->anchor ?>" title="Purchase plans for <?php echo $gallery->title ?>" alt="Purchase plans for <?php echo $gallery->title ?>" target="">Purchase Plans</a> <a class="flyovers" href="<?php echo nggcf_get_gallery_field(49, "Video"); ?>">Flyover</a></h3> | |
<?php include ('form.php') ?> | |
</li> | |
<?php endif;?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment