Hi
I wonder if anyone can help, we have a thumbnails with timthumb that display the alt txt as alt="" when what we would like is the img title to be the alt txt.
So the current php is
<?php echo get_post_image (get_the_id(), '', '', '' .get_bloginfo('template_url') .'/scripts/timthumb.php?zc=1&w=80&h=65&src='); ?>
Have also tried, the code below, which cures the alt text issue but does not display the thumbnail.
<img src="<?php bloginfo('template_url'); ?>/scripts/timthumb.php?src=<?php echo get_post_meta(get_the_ID(), "thumb", $single = true); ?>&h=150&w=200&zc=1" alt="<?php the_title(); ?>" width="200" height="150" />
Any ides would be much appreciated.
Thanks for reading.