wp_anonymize_comment

过滤钩子
apply_filters( 'wp_anonymize_comment', true, $comment, $anonymized_comment )
参数
  • (bool|string) $anon_message Whether to apply the comment anonymization (bool) or a custom message (string). Default true.
    Required:
  • (WP_Comment) $comment WP_Comment object.
    Required:
  • (array) $anonymized_comment Anonymized comment data.
    Required:
定义位置
相关勾子
wp_insert_commentwp_count_commentsspammed_commentspam_commentrest_allow_anonymous_comments
相关方法
wp_new_commentwp_spam_commentwp_allow_commentwp_insert_commentwp_unspam_commentwp_filter_comment
引入
4.9.6
弃用
-

wp_anonymize_comment:这是 WordPress 中的一个过滤器钩子,允许开发人员在将评论存储到数据库之前对其进行匿名处理。这对于实施隐私法规(例如 GDPR)很有用,这些法规要求从存储的数据中删除个人身份信息。

过滤器是否对评论进行匿名处理。

$anon_message = apply_filters( 'wp_anonymize_comment', true, $comment, $anonymized_comment );

常见问题

FAQs
查看更多 >