But as I said to you earlier:
Quote:
Originally Posted by tangoforce
Well that won't really help much. Unless you print the path to the image in the html, how do you expect to test it?
|
you need to print the file path and filename in your html now instead of the static image you've hard coded.
Please will you change this:
<img src="<?php bloginfo('template_url'); ?>/images/pic_02.jpg" />
To this:
<img src="<?php bloginfo('template_url'); print $pic; ?>" />
If you won't do that, then how do you expect to get this working?