Changeset 45239

Show
Ignore:
Timestamp:
05/11/08 13:18:53 (2 months ago)
Author:
gspx
Message:

New trunk version adds my_akismet_number which just returns the number of comments, without any information sentence.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • show-your-akismet-count-as-plain-text/trunk/akismet_count.php

    r45232 r45239  
    1212echo "<a href='http://akismet.com/'>Akismet</a> has protected my blog from " . $akismetcount . " spam comments. Nice try!"; 
    1313} 
     14function my_akismet_number() { 
     15$akismetcount = number_format_i18n(get_option('akismet_spam_count')); 
     16echo $akismetcount; 
     17} 
    1418?>