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

kristin on 01/31/08


Tagged


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

webStruck_
absolon


WordPress (WP) Custom Fields


Published in: PHP 


URL: http://5thirtyone.com/archives/875

  1. <div class="lead-image-wrapper">
  2. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  3. <?php $image = get_post_meta($post->ID, 'lead_image', true); ?>
  4. <img alt="<?php the_title_attribute(); ?>" src="<?php echo $image ?>" />
  5. </div>

Report this snippet 

You need to login to post a comment.