spam_comment

spam_comment

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

See hook in core

Displaying hooks found in version: wordpress-6.5.2

do_action('spam_comment') is found 1 times:

  • /wp-includes/comment.php line 1643
    	 *
    	 * @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() );