在此Wordpress安装中,注释不会显示在管理部分中。 我使用wp_insert_comment()函数添加注释,并使用自定义帖子类型的帖子ID。在自定义帖子类型中,支持设置为接受评论。
在自定义帖子类型编辑页面上,我看到评论的计数气球(参见屏幕截图1),当我点击气球时,我会转到管理员的评论页面并完美地查看该页面的评论(截图2)。但是,当我直接进入评论部分时,它说没有评论(截图3)。注释按钮的计数也可以工作..(截图4)
我尝试修改评论代码,但它仍无效。
我如何添加评论代码:
$data = array(
'comment_post_ID' => HERE COMES THE ID FROM THE POST (CUSTOM POST TYPE),
'comment_author' => HERE COMES THE AUTHOR NAME,
'comment_author_email' => HERE COMES AUTHOR EMAIL,
'comment_author_url' => '',
'comment_content' => get_the_title($id).' heeft sollicitatie gedaan op '. $time,
'comment_type' => '',
'comment_parent' => '',
'comment_author_IP' => $_SERVER['REMOTE_ADDR'],
'comment_agent' => '',
'comment_date' => $time
);
$comment_id = wp_insert_comment($data);
wp_set_comment_status( $comment_id, 'hold' );
答案 0 :(得分:0)
我发现了这个问题。我更改了WPML设置并且它有效..