打开目录\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 )); }
一个大括号就是一整个函数,直接替换就行。