Description
This plugin randomly selects a winner or winners from the comments of a giveaway post. It only lists the 100 most recent posts to reduce strain on your server. You can disqualify people who’ve entered more than once (determined by email), or reduce their entries to only one. The plugin uses MySQL’s random function RAND() to randomly select the winners directly from the database.
Screenshots
Installation
- Upload the folder ‘pick-giveaway-winner’ to the ‘/wp-content/plugins/’ directory.
- Activate the plugin through the ‘Plugins’ menu in WordPress.
- Go to Tools -> Pick Giveaway Winner.
- Select the giveaway post from the drop-down menu.
- Select how many winners you want.
- Choose how to handle duplicate entries (determined by email).
- Press the “Pick Winner!” button to randomly draw your winners.
FAQ
-
How are the winners randomly selected?
-
The plugin uses MySQL’s RAND() function to pick the winners directly from the database.
-
Why does it take so long to choose a winner?
-
The more comments your post has, the longer it will take to parse the data and determine a winner. Also, if you choose to “Discard multiple entries, but allow the entrant a single entry” the plugin has to do an additional database query to get your results, which takes more time. Be patient and your results will be returned as soon as possible.
-
This isn’t random! I ran the plugin twice in a row and got the same winner.
-
It may seem counterintuitive, but if you re-run the plugin on the same post and occasionally get the same winner, this proves that the plugin actually is random. For example, if you roll a dice several times you will eventually get the same number twice in a row. The same thing happens with the plugin. However, if you run the plugin several times in a row and keep getting the same winner, that could indicate a problem.
-
Why can I only run this plugin on the 100 most recent posts?
-
This is done to reduce strain on the server and avoid problems that occurred when people had more than a thousand posts. Most giveaways should be done by the time you’ve posted 100 more posts, so this shouldn’t cause problems for most people.
-
This is awesome! Can I send you money?
-
Sure! Go to my plugin page at https://www.makeworthymedia.com/plugins/ to donate.
-
Would you like to thank anyone?
-
Yes, I would! Thanks to Roni Noone at https://www.roninoone.com/ for beta testing this plugin.
Reviews
Contributors & Developers
“Pick Giveaway Winner” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Pick Giveaway Winner” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
1.3
- Changed the way the dropdown list of posts is generated and limited it to the most recent 100 posts to avoid trouble people were having if they had more than a thousand posts.
1.1
- Removed wpdb::prepare() errors you might see when running the plugin in WordPress 3.5 and up.
- Added label tags to radio button options so you can select an option by clicking on the text next to it and not just directly on the radio button.
- Updated the FAQ to answer a frequent question about the randomness of the plugin.
1.0
- Original version of the plugin.