You could make a basic script to display 1 of 3 images for example….
Something like…
<?php
$rand_banner = rand(1, 3); // Grab a random number from 1 to 3...
if($rand_banner == 1) { // If number is 1 ?>
HTML Code for first image here
<?php } elseif($rand_banner == 2) { // If number is 2 ?>
HTML Code for second image here
<?php } elseif($rand_banner == 3) { // If number is 3 ?>
HTML Code for third image here
<?php } ?>
alright, thank you. would i add that into my header.php? would I replace it with any current banner snippet?
thanks
I found an answer to multiple images! Look at this brilliant plug in. Works like a charm on 2.7. I don’t see a way to make it rotate – but you can assign different images to different pages!
http://ww.wp.xz.cn/extend/plugins/add-your-own-headers/
(: