Conditional tags – little help needed
-
Hi,
I have used the following to add different banners depending on a page ID, it works fine displays the correct image on the correct page. However i can’t seem to get the code right to link the images. Does anyone know what i need to add to link the images depending on the page ID?
<?php if( is_page(116) ) { $img = 'image1.gif'; $alt = 'image 1'; } else { $img = 'image2.gif'; $alt = 'image 2'; } ?> <img src="<?php echo $img; ?>" alt="<?php echo $alt; ?>" />
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Conditional tags – little help needed’ is closed to new replies.