No uses ningun plugin, con un plugin lo único que conseguiras es poner tu web más elnta, intentalo con el código que te dejo aqui abajo, ves a las plantillas de tu theme y ponlo donde quieras que salga
<?php
$numbanners = 4 ;
$random = rand(1,$numbanners);
$img = array();
$url = array();
$txt = array();
$img[1] = " http://www.tuweb.com/banner1.gif ";
$url[1] = " http://www.tuweb.com ";
$txt[1] = " Mi Sitio Web! ";
$img[2] = " http://www.tuweb.com/banner2.gif ";
$url[2] = " http://www.tuweb2.com ";
$txt[2] = " Tu Sitio Web 2! ";
$img[3] = " http://www.tuweb.com/banner3.gif ";
$url[3] = " http://www.tuweb3.com ";
$txt[3] = " Tu Sitio Web3! ";
$img[3] = " http://www.tuweb.com/banner4.gif";
$url[3] = " http://www.tuweb4.com ";
$txt[3] = " Tu Sitio Web4! ";
echo "<a href='$url[$random]' target=' _blank '><img src='$img[$random]' alt='$txt[$random]' border=' 0 '></a>";
?>