我有两种类型的注释。普通评论和“评论”类型的评论。 代码,wp_insert_comment函数和'comment_type'=>'review'参数插入的评论类型注释
$time = current_time('mysql');
$args = [
'comment_post_ID' => $post_id,
'comment_author' => $current_user->display_name,
'comment_author_email' => $current_user->user_email,
'comment_author_url' => $current_user->user_url,
'comment_content' => $_POST['content'],
'comment_type' => 'review',
'comment_parent' => $_POST['comment_parent'],
'user_id' => $current_user->ID,
'comment_author_IP' => ($_SERVER['REMOTE_ADDR'] !== "")? $_SERVER['REMOTE_ADDR'] : '127.0.0.1',
'comment_agent' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 (.NET CLR 3.5.30729)',
'comment_date' => $time,
'comment_approved' => 0,
];
wp_insert_comment($args);
我想从管理面板中回复这些类型的评论,但是现在,回复评论类型没有设置为“评论”并保存为普通评论。
如何在管理员回复评论表单中添加用于选择评论类型的字段?