Advertisement
toxiccosmos

photospace/facebox hidden div issue

May 31st, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. <div id="left">
  2.     <?php query_posts( 'cat=6' ); ?>
  3.     <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  4.  
  5.     <div id="exh_post">
  6.                
  7.         <h3 class="title"><a href="#gallery<?php the_ID(); ?>" name="modal" rel="facebox"><?php the_title(); ?></a></h3>
  8.         <?php the_content('Read More &raquo;'); ?>
  9.                
  10.     </div>
  11. </div>
  12. <div id="right">
  13.            
  14.     <div id="gallery<?php the_ID(); ?>" style="display:none;">     
  15.         <?php echo do_shortcode('[photospace]'); ?>
  16.     </div>
  17.  
  18. </div>
  19. <div style="clear:both;">
  20.  
  21. <?php endwhile; else: ?>
  22. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
  23. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement