Guest User

Untitled

a guest
Aug 23rd, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. if ( has_post_thumbnail() ) {
  2. $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'large' );
  3. if ( ! empty( $large_image_url[0] ) ) {
  4. echo '<a href="' . esc_url( $large_image_url[0] ) . '" title="' . the_title_attribute( array( 'echo' => 0 ) ) . '">';
  5. echo get_the_post_thumbnail( $post->ID, 'thumbnail' );
  6. echo '</a>';
  7. }
  8. }
Add Comment
Please, Sign In to add comment