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
763
764 add_action('wp_ajax_comment_author_deurl', 'akismet_remove_comment_author_url');
765
766 function akismet_add_comment_author_url() {
767     if ( !empty( $_POST['id'] ) && !empty( $_POST['url'] ) && check_admin_referer( 'comment_author_url_nonce' ) ) {
768         global $wpdb;
769         $comment = get_comment( intval($_POST['id']), ARRAY_A );
770         if (current_user_can('edit_comment', $comment['comment_ID'])) {
771             $comment['comment_author_url'] = esc_url($_POST['url']);
772             do_action( 'comment_add_author_url' );
773             print(wp_update_comment( $comment ));
774             die();
775         }
776     }
777 }
778
779 add_action('wp_ajax_comment_author_reurl', 'akismet_add_comment_author_url');
780
781 // Check connectivity between the WordPress blog and Akismet's servers.