How to Randomize the Images with the WordPress WP-Cycle Slideshow Plugin
Earlier this week I reviewed the WP-Cycle plugin, which is an easy to use image slideshow plugin.
One feature that it doesn’t have is a random display of the images. The images are displayed in the upload order. This isn’t such a big deal, if you know this in advance, but I didn’t know a client wanted them displayed randomly until after I had uploaded 30+ images and I didn’t want to delete them and start over.
If you want the the images displayed randomly, you will need to edit the plugin file.
Here’s what you do.
Locate the following lines in the plugin file. In the current version, it started at line 811.
echo ‘<div id=”‘.$wp_cycle_settings['div'].’”>’.$newline;
foreach((array)$wp_cycle_images as $image => $data) {
In between the two lines add
shuffle($wp_cycle_images);
The code block should now look like the following.
echo ‘<div id=”‘.$wp_cycle_settings['div'].’”>’.$newline;
shuffle($wp_cycle_images);
foreach((array)$wp_cycle_images as $image => $data) {
The images will now be displayed in a random order. Before editing a plugin file, make a backup of it first.
Of course, if you upgrade the plugin, you will lose your customizations.
The WordPress forums are a great source of information for tidbits like this. I found the solution here.
photo credit: Artiii
Keep Reading:
Did you enjoy this article? I can assist you with your WordPress or Facebook project. Contact me and I will provide you with an estimate. You can also connect with me on Facebook or follow me on Twitter. If you are looking for Hosting, WordPress Theme, Newsletter or other recommendations, please view my detailed list.











November 18, 2010 at 11:20 am
Thanks! This will come handy…
Pam Carter“s last post ..Get a Samsung Un46c8000 46 1080p 3D LED HDTV for 1596 at 6th Avenue Electronics
November 19, 2010 at 6:22 am
Thanks for the warning and for providing a fix too.