comment_add_author_url

comment_add_author_url

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('comment_add_author_url') is found 1 times:

  • /wp-content/plugins/akismet/class.akismet-admin.php line 601
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
            $comment_id = intval( $_POST['id'] );
            $comment    = get_comment( $comment_id, ARRAY_A );
            if ( $comment && current_user_can( 'edit_comment', $comment['comment_ID'] ) ) {
                $comment['comment_author_url'] = esc_url( $_POST['url'] );
                do_action( 'comment_add_author_url' );
                print( wp_update_comment( $comment ) );
                die();
            }
        }
    }