mightymente
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Galleries] Dynamic Post Id for the galleryHy,
Thanks …. I resloved my issue…Forum: Plugins
In reply to: [Featured Galleries] Dynamic Post Id for the galleryHy,
I posted the selected id of the post in ligthbox…
something like this ,
$galleryArray = get_post_gallery_ids($_GET[‘dataId’]);
but my $galleryArray is showing empty ..because it is not getting the selected post id in it …Can you please tell me why this is happening??
Forum: Plugins
In reply to: [Featured Galleries] Dynamic Post Id for the galleryI have created lightbox.but i got stuck at one point..i have different featured gallery for each post….I want on which post i clicked i get the featured gallery of only that post.. here is the url the page on which i am working http://mightymente.org/projects/alismidaas/development/demo/
Here is my code:
$value=420; // here i want to pass id of a selected post.
$galleryArray = get_post_gallery_ids($value);
// print_r ($galleryArray);
$c = 0;
foreach ($galleryArray as $id) {
if ( $c == 0 ){ $class = ‘active’;}
else{$class = ”;}
?>
<div class=’item <?php echo $class; ?>’ >” class=”img-responsive”></div>
<?php $c++ ; ?>
<?php }Forum: Plugins
In reply to: [Featured Galleries] Dynamic Post Id for the galleryI want on whichever post i clicked …..i want its related featured gallery in a lightbox.