Código PHP :
<?php $numbanners = 3; //numero de banners que se rotarán $random = rand(1,$numbanners); $img = array(); $url = array(); $txt = array(); $img[1] = "http://mi-web-/wp-content/uploads/1.jpg"; $url[1] = "http://www.enlace1.com"; $txt[1] = "Visita el enlace del banner 1"; $img[2] = "http://mi-web-/wp-content/uploads/2.jpg"; $url[2] = "http://www.enlace2.com"; $txt[2] = "Visita el enlace del banner 2"; $img[3] = "http://mi-web-/wp-content/uploads/3.jpg"; $url[3] = "http://www.enlace3.com"; $txt[3] = "Visita el enlace del banner 3"; echo "<a href='$url[$random]' target='_blank'><img src='$img[$random]' alt='$txt[random]' border='0'></a>"; ?>