Quote:
Originally Posted by ottopottomouse
CUSTOM-FIELD-NAME filled out with image address
Code:
<img src="<?php echo get_post_meta($post->ID, 'CUSTOM-FIELD-NAME', true); ?>" alt="" height="480" width="640" />
Can call another field for the alt tag or create something related to the post title etc.
|
fris - gotcha
otto - so:
Code:
<img src="<?php echo get_post_meta($post->ID, 'featured-images', true); ?>" alt="" height="480" width="640" />
in this case I presume?