Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. if ( has_post_thumbnail() ) {
  3. $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' );
  4. echo '<a href="' . $large_image_url[0] . '" title="' . the_title_attribute( 'echo=0' ) . '" >';
  5. echo get_the_post_thumbnail( $post->ID, 'medium' );
  6. echo '</a>';
  7. }
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement