WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
| Line | Code | 
|---|---|
| 148 |           $comment['blog_lang']    = get_locale(); | 
| 149 |           $comment['blog_charset'] = get_option('blog_charset'); | 
| 150 |           $comment['permalink']    = get_permalink( $comment['comment_post_ID'] ); | 
| 151 |  | 
| 152 |           if ( ! empty( $comment['user_ID'] ) ) { | 
| 153 |                $comment['user_role'] = Akismet::get_user_roles( $comment['user_ID'] ); | 
| 154 |           } | 
| 155 |  | 
| 156 |           /** See filter documentation in init_hooks(). */ | 
| 157 |           $akismet_nonce_option = apply_filters( 'akismet_comment_nonce', get_option( 'akismet_comment_nonce' ) ); | 
| 158 |           $comment['akismet_comment_nonce'] = 'inactive'; | 
| 159 |           if ( $akismet_nonce_option == 'true' || $akismet_nonce_option == '' ) { | 
| 160 |                $comment['akismet_comment_nonce'] = 'failed'; | 
| 161 |                if ( isset( $_POST['akismet_comment_nonce'] ) && wp_verify_nonce( $_POST['akismet_comment_nonce'], 'akismet_comment_nonce_' . $comment['comment_post_ID'] ) ) | 
| 162 |                     $comment['akismet_comment_nonce'] = 'passed'; | 
| 163 |  | 
| 164 |                // comment reply in wp-admin | 
| 165 |                if ( isset( $_POST['_ajax_nonce-replyto-comment'] ) && check_ajax_referer( 'replyto-comment', '_ajax_nonce-replyto-comment' ) ) | 
| 166 |                     $comment['akismet_comment_nonce'] = 'passed'; | 
| Line | Code | 
| 854 |      public static function add_comment_nonce( $post_id ) { | 
| 855 |           /** | 
| 856 |            * To disable the Akismet comment nonce, add a filter for the 'akismet_comment_nonce' tag | 
| 857 |            * and return any string value that is not 'true' or '' (empty string). | 
| 858 |            * | 
| 859 |            * Don't return boolean false, because that implies that the 'akismet_comment_nonce' option | 
| 860 |            * has not been set and that Akismet should just choose the default behavior for that | 
| 861 |            * situation. | 
| 862 |            */ | 
| 863 |           $akismet_comment_nonce_option = apply_filters( 'akismet_comment_nonce', get_option( 'akismet_comment_nonce' ) ); | 
| 864 |  | 
| 865 |           if ( $akismet_comment_nonce_option == 'true' || $akismet_comment_nonce_option == '' ) { | 
| 866 |                echo '<p style="display: none;">'; | 
| 867 |                wp_nonce_field( 'akismet_comment_nonce_' . $post_id, 'akismet_comment_nonce', FALSE ); | 
| 868 |                echo '</p>'; | 
| 869 |           } | 
| 870 |      } | 
| 871 |  | 
| 872 |      public static function is_test_mode() { |