Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // If you want to use image link
  2.  
  3. $image_variable = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'large' ); echo $image_variable[0];
  4.  
  5.  
  6. // If you want to use your custom size
  7.  
  8. $image_variable = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-image' ); echo $image_variable[0];
  9.  
  10.  
  11.  
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement