Dashboard Akismet Hack 0.0.3
Posted by Mark | Filed under WordPress
Akismet is a popular comment, trackback, pingback spam blocker. Originally it was developed for the WordPress blogging platform; it has since been extended to work on a variety of blogging and forums systems. However the only part of it I really care about is the WordPress plugin as it is one of the ways I protect this site from spammers. Akismet works great1 but there is one thing the developers of Akismet have never seen fit to do which drives me bonkers. Which is to say the only place the Akismet plugin shows you how many comments it has in the spam moderation queue is on the spam moderation queue page. And yet they put some stats for Akismet right there on the WordPress dashboard. In ages long past, I cobbled together a small hack to display those moderation numbers, when I upgraded my site to a more current version of WordPress my hack broke.
This morning I finally fixed it. People more clever than myself could make this into a full fledged plugin, but this little hack is good enough for me. To do this:
- Download a copy of the Akismet plugin for WordPress
- Decompress the zip file
- Open the akismet.php file in your favorite text editor2
- In akismet.php, search for “function akismet_stats()”. It should be around line 510.
- In the akismet_stats function, under the line reading
echo '<h3>'.__('Spam').'</h3>';add the following code:
$spam_count = akismet_spam_count();
$link = 'edit-comments.php';
if ($spam_count) :
print "<strong><a href="$link?page=akismet-admin" title="Click here to see the moderation queue">Spam in moderation ($spam_count)</a></strong>\n";
endif; - Save your changes.
- Uploaded your edited copy of akismet.php to http://yourblog.com/wp-content/plugins/akismet/ and then follow the normal instructions for installing/activating the Akismet plugin.
With this small hack in place, when Akismet traps some comment spam in its moderation queue the WordPress dashboard will display a link under the Spam in the Latest Activity box. The link will say “Spam in moderation (x)” where x is the number of items in the spam moderation queue. Since WordPress likes to occasionally mangle the display of code in posts, I’ve created a text file with my changes to the akismet_stats function. You download that file here.
Update 2007-04-22: As to be expected, it didn’t take the spammers long to generate some sample data for me to create a screenshot of my hack. Enjoy!
1 Particularly with the Bad Behavior anti-spam plugin added to it.
2 E.g. Kate
Similar Posts
- WordPress/Akismet Hack 0.0.2
Do you run WP? Do you also have Akismet installed? Would you like a quick reference on the Dashboard ... - Pukka’s Links of the Week
Due to recent crackdowns at the office on Internet access, this is likely to be the last PLotW. Also ... - Dear Mr. S. Bot
Dear Mr. S. Bot, Mr. S. Bot, do you mind if I call you Spam? No? Good. I thought I would take a mome ... - Funny Comment Spam
Even though I run multiple plugins to block comment spam; some still makes it into my moderation que ... - Now-Reading Tweaks v2
Some time back, I tried to make Rob Miller's Now-Reading plugin display who's reading each book on t ...
About Mark McKibben
Mark is a data analyst for [REDACTED], currently residing in the Midwest. CoffeeBear is a place for him to spout off about whatever catches his fancy. In his spare time, Mark does a bit of webdev & design. To stalk him more effectively, try following him on Twitter.
2 Comments
Trackbacks/Pingbacks
Leave a Reply
Search
Recent Comments
Troy: I see that you "debunked" everything except the part where this new healthcare reform applies to everybody except Congress. Care to elaborate?
E Mo: Judy, Your comment about the lawyers causing higher insurance premiums is spot on. What you may not know is that the Democrats, from the Whitehouse on down, have continuously refused to include 'tort reform' in the new health plan. Tons of articles have been written about the numbers of 90% to 97%
Judy: Why doesn't anyone mention that the insurance companies charge more premiums because the cost of health care (hospitals, doctors, etc) is higher because of lawsuits which insurance companies have to pay, etc, etc. It's like a dog chasing it's tail and of course the consumers have to pay the cost. If they can't
Judy: Unfortunately - our "elected" officials (Democrat and Republicans) don't care about OUR best interest anymore. Maybe when they are first elected.....but it doesn't take long for that to change. I feel that the government is already in our lives TOO much. Yes, we do need health care fixed, but remember these are
George: Mark, thanks for the effort in debunking this. I am the CEO of a very large practice (28-physicians) and garbage like that found in this email is really affecting the arguments for valid healthcare reform. I have spent many hours doing the exact same thing you have done for my relatives just to explain
Now Reading
Agile Web Development with Rails, Third Edition by Dave Thomas
Ship of Destiny by Robin Hobb














April 21st, 2007 at 11:18 am
I meant to include a screenshot of what the link looks like but at the moment my spam moderation queue is empty. Yeah, Akismet! :D Once I’ve got some spam in there, I’ll try to remember to come back and update this post with a screenshot.