I'm looking for something that I can use to rotate images in WP. Nothing with a skim, just a simple rotate script. I been digging around in the wp forums and cant come up with anything. I dont mind paying a few bucks if I know it will work in wordpress. Any ideas?
Image rotating script
Collapse
X
-
Tags: None
-
-
just throw a little bit of php on your page and youre good to go
<?php
$img[1] = "location/of/some/image.jpg";
$img[2] = "location/of/some/image.jpg";
$img[3] = "location/of/some/image.jpg";
$img[4] = "location/of/some/image.jpg";
$r = rand(1, count($img));
echo "<img src=\"" . $img[$r] . "\" />";
?>Comment
-
Comment
-
that will work on any HTML document? ... its something im looking for ... for banner ads on my free site im building..Comment
-
nice thanks! I'm gonna have MasterUT code me a custom one
Comment

Comment