We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

fris on 07/28/08


Tagged

image link wordpress


Versions (?)


link a thumb to a post using a custom field


Published in: PHP 


  1. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  2.  
  3. <?php $thumb = get_post_meta($post->ID, 'thumb', true); ?>
  4.  
  5. <a target="_blank" href="<?php the_permalink() ?>"><img alt="" width="180" height="240" src="<?php echo $thumb; ?>" /></a>
  6.  
  7. <?php endwhile; ?>
  8.  
  9. <?php endif; ?>

Report this snippet 

You need to login to post a comment.