Thanks Steve. I’ll give that a try. I am kinda drawn blank right now as this is my first wordpress site. But I’ll research online about what you said and see how it goes.
Is there anyway to make it dynamic? I mean controllable through admin panel. Could custom fields be used?
Thanks for the reply. It’s not hosted at the moment. I am just using wamp right now. Are you suggesting something like this? Please advise.
<img src=”http://localhost/wp-content/themes/one/images/<?php
if (is_page(1)) {
print ‘image1.jpg” />’;
}elseif (is_page(2)) {
print ‘image2.jpg” />’;
}else {
print ‘image3.jpg” />’;
?>