Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: akismet_show_user_comments_approved

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
561                echo '<span class="akismet-status" commentid="'.$comment->comment_ID.'"><a href="comment.php?action=editcomment&amp;c='.$comment->comment_ID.'#akismet-status" title="' . esc_attr__( 'View comment history' , 'akismet') . '">'.esc_html( $desc ).'</a></span>';
562
563           $show_user_comments_option = get_option( 'akismet_show_user_comments_approved' );
564           
565           if ( $show_user_comments_option === false ) {
566                // Default to active if the user hasn't made a decision.
567                $show_user_comments_option = '1';
568           }
569           
570           $show_user_comments = apply_filters( 'akismet_show_user_comments_approved', $show_user_comments_option );
571           $show_user_comments = $show_user_comments === 'false' ? false : $show_user_comments; //option used to be saved as 'false' / 'true'
572           
573           if ( $show_user_comments ) {
574                $comment_count = Akismet::get_user_comments_approved( $comment->user_id, $comment->comment_author_email, $comment->comment_author, $comment->comment_author_url );
575                $comment_count = intval( $comment_count );
576                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>';
577           }
578
579           return $a;