Advertisement
Guest User

Untitled

a guest
Dec 10th, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. <h1>Kuvia</h1>
  2. <a class="trigger" href="#">Suurenna</a>
  3. <div class="hiddenimages" id="hiddenimages">
  4. <?php
  5. $attachments = get_children( array('post_parent' => get_the_ID(), 'order'=> 'ASC', 'orderby' => 'name', 'post_type' => 'attachment', 'post_mime_type' =>'image') );
  6. foreach ( $attachments as $attachment_id => $attachment ) { ?>
  7. <a href="<?php $image_attributes = wp_get_attachment_image_src( $attachment_id, 'full' ); echo $image_attributes[0]; ?>"><?php echo wp_get_attachment_image( $attachment_id, 'medium' ); ?></a>
  8. <?php } ?>
  9.  
  10. </div>
  11.  
  12. ... tuottaa ...
  13.  
  14. <h1>Kuvia</h1>
  15. <a class="trigger" href="#">Suurenna</a>
  16. <div class="hiddenimages" id="hiddenimages">
  17. <a href="http://www.domain.com/wp-content/uploads/2012/10/kuva_01.jpg"><img width="300" height="202" src="http://www.domain.com/wp-content/uploads/2012/10/kuva_01-300x202.jpg" class="attachment-medium" alt="Vaikka työ on pitkälti bittejä, työn tekijä ei ole." title="Vaikka työ on pitkälti bittejä, työn tekijä ei ole." /></a>
  18. <a href="http://www.domain.com/wp-content/uploads/2012/10/kuva_02.jpg"><img width="200" height="300" src="http://www.domain.com/wp-content/uploads/2012/10/kuva_02-200x300.jpg" class="attachment-medium" alt="Yli sata vuotta vanhat rakennukset antavat alueelle luonteen." title="Yli sata vuotta vanhat rakennukset antavat alueelle luonteen." /></a>
  19. <a href="http://www.domain.com/wp-content/uploads/2012/10/kuva_03.jpg"><img width="203" height="300" src="http://www.domain.com/wp-content/uploads/2012/10/kuva_03-203x300.jpg" class="attachment-medium" alt="liikekorttelista on lyhyt matka kaikkialle." title="liikekorttelista on lyhyt matka kaikkialle." /></a>
  20.  
  21. </div>
  22.  
  23. ... ja sit vielä jquery ...
  24.  
  25. $("#content05 a.trigger").bind('click', function(e) {
  26. e.preventDefault();
  27. $("#hiddenimages a:first").click();
  28. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement