trash_comment хук-событиеWP 2.9.0

Fires immediately before a comment is sent to the Trash.

Использование

add_action( 'trash_comment', 'wp_kama_trash_comment_action', 10, 2 );

/**
 * Function for `trash_comment` action-hook.
 * 
 * @param string     $comment_id The comment ID as a numeric string.
 * @param WP_Comment $comment    The comment to be trashed.
 *
 * @return void
 */
function wp_kama_trash_comment_action( $comment_id, $comment ){

	// action...
}
$comment_id(строка)
The comment ID as a numeric string.
$comment(WP_Comment)
The comment to be trashed.

Список изменений

С версии 2.9.0 Введена.
С версии 4.9.0 Added the $comment parameter.

Где вызывается хук

wp_trash_comment()
trash_comment
wp-includes/comment.php 1544
do_action( 'trash_comment', $comment->comment_ID, $comment );

Где используется хук в WordPress

Использование не найдено.