Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. add_theme_support( 'post-thumbnails', array( 'post', 'carousel-image' ) );
  3. add_image_size( 'post-image', 600, 200, true );
  4. $image_variable = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-image' );
  5. echo $image_variable[0];
  6. //href small img
  7. <?php echo $portfolio_image[0];?>
  8.  
  9. // img src big img
  10. <?php echo $portfolio_large[0]; ?>
  11.  
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement