Wordpress WP_Comment_Query - 没有空格

时间:2014-01-08 16:07:07

标签: wordpress

我目前正在使用WP_Comment_Query来恢复特定的评论......

问题是它没有正确格式化注释,如果它们输入回车符,它只是忽略它们并显示没有格式化的原始文本......

任何人都可以帮助我。

1 个答案:

答案 0 :(得分:0)

将此添加到函数:

remove_filter( 'the_content', 'wpautop' );

然后使用nl2br();

进行过滤

e.g。

$comments = get_comments(array('post_id' => $post->ID,));
foreach ($comments as $comment){
  echo nl2br($comment->comment_content);
}