pre_comment_user_ip

过滤钩子
apply_filters( 'pre_comment_user_ip', $commentdata['comment_author_IP'] )
参数
  • (string) $comment_author_ip The comment author's IP address.
    Required:
定义位置
相关勾子
pre_comment_user_agentpre_count_usersrest_comment_queryget_comment_author_ippre_comment_on_post
相关方法
get_comment_author_ipcomment_author_ipwp_comment_replyget_comment_guidget_current_user_idprevious_comments_link
引入
1.5.0
弃用
-

pre_comment_user_ip: 这是一个过滤钩子,允许修改与评论一起存储的用户IP地址。该钩子在评论提交时被触发,并传递用户IP地址作为参数。这个钩子可以用来在用户IP地址被存储到数据库之前对其进行净化或验证。

在设置评论作者的IP地址之前过滤该地址。

$commentdata['comment_author_IP'] = apply_filters( 'pre_comment_user_ip', $commentdata['comment_author_IP'] );

常见问题

FAQs
查看更多 >