最近博主把博客迁到了阿里云的ECS,速度快了不是,但随后博主又发现前后台的评论显示不出来了,具体可见图


怎么办呢??博主多次替换数据库和文件,结果都不能解决这一问题!!
解决方案:
打开目录wp-includes,找到comment-template.php
搜索函数“function comment_text”(无双引号)找到如图所示的地方

将其全部改为
function comment_text( $comment_ID = 0 ) {
$comment = get_comment( $comment_ID );
echo(get_comment_text( $comment_ID ));
}
刷新一下,就好了



