spam_comment

spam_comment

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

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('spam_comment') is found 1 times:

  • /wp-includes/comment.php line 1662
    1658
    1659
    1660
    1661
    1662
    1663
    1664
    1665
    1666
    1667
    1668
    *
     * @param int        $comment_id The comment ID.
     * @param WP_Comment $comment    The comment to be marked as spam.
     */
    do_action( 'spam_comment', $comment->comment_ID, $comment );
     
    if ( wp_set_comment_status( $comment, 'spam' ) ) {
        delete_comment_meta( $comment->comment_ID, '_wp_trash_meta_status' );
        delete_comment_meta( $comment->comment_ID, '_wp_trash_meta_time' );
        add_comment_meta( $comment->comment_ID, '_wp_trash_meta_status', $comment->comment_approved );
        add_comment_meta( $comment->comment_ID, '_wp_trash_meta_time', time() );