Akismet has marked as spam.
* Author: Ronald Heft, Jr.
* Author URI: http://cavemonkey50.com/
*/
function akismet_count ($text = false) {
$count = number_format(get_option('akismet_spam_count'));
$name = get_option('blogname');
if (($count) || (function_exists('akismet_stats'))) {
if ($text != true)
echo $count;
else
echo "Akismet has protected " . $name . " from " . $count . " spam comments.";
}
else
echo "Error retrieving spam count. Check if you have Akismet installed.";
}
?>