Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php if ( has_post_thumbnail() ) : ?>
  2. <a class="popup" href="<?php
  3. $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large' );
  4. echo $large_image_url[0];
  5. ?>" title="<?php the_title_attribute(); ?>">
  6. <?php the_post_thumbnail(array(250, 250)); ?>
  7. </a>
  8. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement