wordpress / latest / hooks / wp_update_comment_data.html

apply_filters( 'wp_update_comment_data', array|WP_Error $data, array $comment, array $commentarr )

Filters the comment data immediately before it is updated in the database.

Description

Note: data being passed to the filter is already unslashed.

Parameters

$data array|WP_Error
The new, processed comment data, or WP_Error.
$comment array
The old, unslashed comment data.
$commentarr array
The new, raw comment data.

Source

File: wp-includes/comment.php. View all references

$data = apply_filters( 'wp_update_comment_data', $data, $comment, $commentarr );

Used By

Used By Description

Changelog

Version Description
5.5.0 Returning a WP_Error value from the filter will short-circuit comment update and allow skipping further processing.
4.7.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/wp_update_comment_data