动作钩子::在将注释插入数据库后立即激发。
do_action( ‘comment_post’, int $comment_ID , int|string $comment_approved , array $commentdata )
参数(Parameters)
参数 | 类型 | 说明 |
---|---|---|
$comment_ID | (int) | 评论ID。 |
$comment_approved | (int | string) | 如果评论被批准,则为1;如果没有,则为0;如果是垃圾邮件,则为“垃圾邮件”。 |
$commentdata | (array) | 注释数据。 |
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
4.5.0 | wp-includes/comment.php:2165 | 1 | 0 |
笔记(Notes)
下面的示例使用comment_post挂钩在发布注释后立即运行函数。函数检查注释是否被批准,如果批准,则执行指定的代码。