Wordpress wp_new_comment允许多条评论

时间:2017-09-01 16:48:03

标签: php wordpress

我正在处理一个使用wp_new_comment函数提交WordPress评论的脚本。

当同一用户提交另一条评论时,它会出错并且不保存评论

我需要总是在comment_parent 0,

上写评论

这是调用wp_new_comment

的代码
$comment_id = wp_new_comment(
            array(
                'comment_post_ID'      => $course_id,
                'comment_author'       => 'LpAuther',
                'comment_author_email' => $user->user_email,
                'comment_author_url'   => '',
                'comment_content'      => $args['content'],
                'comment_parent'       => 0,
                'user_id'              => $user->ID,
                'comment_approved'     => 1,
                'comment_type'         => 'review'
            )
        );

1 个答案:

答案 0 :(得分:0)

我已经在代码functions.php

下面添加了一个解决方案
add_filter('duplicate_comment_id', '__return_false');