Advertisement
willynast

Image Issue #1

Sep 4th, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <?php
  2. if ( has_post_thumbnail() ) { ?>
  3. <?php
  4. $imgsrcparam = array(
  5. 'alt' => trim(strip_tags( $post->post_excerpt )),
  6. 'title' => trim(strip_tags( $post->post_title )),
  7. );
  8. $thumbID = get_the_post_thumbnail( $post->ID, 'two', $imgsrcparam ); ?>
  9. <div class="preview"><a href="<?php the_permalink() ?>"><?php echo "$thumbID"; ?></a></div>
  10.  
  11. <?php } else {?>
  12. <div class="preview"><a href="<?php the_permalink() ?>"><img src="<?php bloginfo('template_url'); ?>/images/default-thumbnail.jpg" alt="<?php the_title(); ?>" /></a></div>
  13. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement