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
John j: James, Mark:
Many states' health department must approve new construction or expansion of hospitals and the purchase of exotic diagnostic equipment. In the new environment (if we ever get there) doctors will no longer use the equipment they have on site. I talked to my GP a couple of months ago and the only
Tim: I recieved the e-mail from my nephew today and also spent the time to read all the sections.
I wrote him an at length rebuttal to all the points they are trying to make. It would seem that you and I are exactly on the same page when it comes to interpreting the bill. The Judge,
Michael: find it here: http://frwebgate.access.gpo.gov/cgi-bin/getdoc.cgi?dbname=111_cong_bills&docid=f:h3200ih.txt.pdf
E Mo: Mark, I appreciate your enthusiasm, but perhaps, in the magazine article you hot-linked, you over looked a couple of paragraph's below where your 2.3% stat was mentioed that the Dr's. disagreed, saying 5% for direct cost of insurance and 5% for for their over medicating, just to be safe. I wasn't trying to
james: Nice job on the debunking it makes sending rebuttal emails to the rest of my family much easier. Extra props for all the links to the bill itself. One bit of extra info though , if I am reading it correctly the prohibition on expansion of facilities is only on physician owned hospitals. I think
Now Reading
Agile Web Development with Rails, Third Edition by Dave Thomas
Boneshaker by Cherie Priest














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.