another wordpress Q
another wordpress Q
Out of context: Reply #7
- Started
- Last post
- 7 Responses
- mydo0
i've not really looked at this properly. but i'm guessing $image; is the output from your custom field?
if so, you can just remove the image tag around it.or if it's box2,
change this
<img src="<?php echo get_post_meta($post->ID, 'feature2', true); ?>" width="190" height="110" >to this
<?php echo get_post_meta($post->ID, 'feature2', true); ?>
- and have the HTML in your custom. it's not ideal though.mydo
- legend! that fixed it. thx so much mate.forcetwelve
- no wurries mate.mydo