Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_add_author_url

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
513           }
514      }
515
516      public static function add_comment_author_url() {
517           if ( !empty( $_POST['id'] ) && !empty( $_POST['url'] ) && check_admin_referer( 'comment_author_url_nonce' ) ) {
518                $comment_id = intval( $_POST['id'] );
519                $comment = get_comment( $comment_id, ARRAY_A );
520                if ( $comment && current_user_can( 'edit_comment', $comment['comment_ID'] ) ) {
521                     $comment['comment_author_url'] = esc_url( $_POST['url'] );
522                     do_action( 'comment_add_author_url' );
523                     print( wp_update_comment( $comment ) );
524                     die();
525                }
526           }
527      }
528
529      public static function comment_row_action( $a, $comment ) {
530           $akismet_result = get_comment_meta( $comment->comment_ID, 'akismet_result', true );
531           $akismet_error  = get_comment_meta( $comment->comment_ID, 'akismet_error', true );