wp_check_comment_disallowed_list

动作钩子
do_action( 'wp_check_comment_disallowed_list', $author, $email, $url, $comment, $user_ip, $user_agent )
参数
  • (string) $author Comment author.
    Required:
  • (string) $email Comment author's email.
    Required:
  • (string) $url Comment author's URL.
    Required:
  • (string) $comment Comment content.
    Required:
  • (string) $user_ip Comment author's IP address.
    Required:
  • (string) $user_agent Comment author's browser user agent.
    Required:
定义位置
相关勾子
check_comment_floodwp_update_comment_datawp_is_comment_floodpre_comment_user_ippre_comment_on_post
相关方法
wp_check_comment_disallowed_listwp_check_comment_floodwp_check_comment_data_max_lengthscheck_comment_flood_dbwp_throttle_comment_floodwp_check_locked_posts
引入
5.5.0
弃用
-

wp_check_comment_disallowed_list 函数是一个 WordPress 核心函数: 这个函数用于检查评论是否在 WordPress 禁止评论列表中。如果评论中包含的电子邮件地址或 IP 地址在禁止评论列表中,则此函数将返回 true,否则返回 false。

在评论被测试为不允许的字符或单词之前触发。

do_action( 'wp_check_comment_disallowed_list', $author, $email, $url, $comment, $user_ip, $user_agent );

常见问题

FAQs
查看更多 >