我正在处理一个使用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'
)
);
答案 0 :(得分:0)
我已经在代码functions.php
add_filter('duplicate_comment_id', '__return_false');