get_comment_history example

        
        if ( $show_user_comments ) {
            $comment_count = Akismet::get_user_comments_approved( $comment->user_id, $comment->comment_author_email, $comment->comment_author, $comment->comment_author_url );
            $comment_count = intval( $comment_count );
            echo '<span class="akismet-user-comment-count" commentid="'.$comment->comment_ID.'" style="display:none;"><br><span class="akismet-user-comment-counts">'. sprintf( esc_html( _n( '%s approved', '%s approved', $comment_count , 'akismet') )number_format_i18n( $comment_count ) ) . '</span></span>';
        }

        return $a;
    }

    public static function comment_status_meta_box( $comment ) {
        $history = Akismet::get_comment_history( $comment->comment_ID );

        if ( $history ) {
            foreach ( $history as $row ) {
                $message = '';

                if ( ! empty( $row['message'] ) ) {
                    // Old versions of Akismet stored the message as a literal string in the commentmeta.                     // New versions don't do that for two reasons:                     // 1) Save space.                     // 2) The message can be translated into the current language of the blog, not stuck                     // in the language of the blog when the comment was made.

function akismet_result_hold( $approved ) {
    return Akismet::comment_needs_moderation( $approved );
}
function akismet_get_user_comments_approved( $user_id$comment_author_email$comment_author$comment_author_url ) {
    return Akismet::get_user_comments_approved( $user_id$comment_author_email$comment_author$comment_author_url );
}
function akismet_update_comment_history( $comment_id$message$event = null ) {
    return Akismet::update_comment_history( $comment_id$message$event );
}
function akismet_get_comment_history( $comment_id ) {
    return Akismet::get_comment_history( $comment_id );
}
function akismet_cmp_time( $a$b ) {
    return Akismet::_cmp_time( $a$b );
}
function akismet_auto_check_update_meta( $id$comment ) {
    return Akismet::auto_check_update_meta( $id$comment );
}
function akismet_auto_check_comment( $commentdata ) {
    return Akismet::auto_check_comment( $commentdata );
}
function akismet_get_ip_address() {
    
Home | Imprint | This part of the site doesn't use cookies.