wordpress前台后台不显示评论内容
话说,在新友链后,我才弱弱的发现了这个问题,前台后台不显示留言内容,种情况用多说可能会这样,可是我这明显没有啊~肿么回事,来吧。解决它。
找到wp-includes目录comment-template.php文件把函数 function comment_text( $comment_ID = 0 ) { $comment = get_comment( $comment_ID ); echo apply_filters( ‘comment_text’, get_comment_text( $comment_ID ), $comment ); } 改为 function comment_text( $comment_ID = 0 ) { $comment = get_comment( $comment_ID ); echo(get_comment_text( $comment_ID )); } 就可以了注意显示评论
OK问题就这么愉快的解决了,我就是按照这种方式完美解决。
有些同学不在意wp自带的评论但是我认为,wp上的自带评论1.对SEO好 2.全球性的 3.不会被多说社区剽窃 4.集成更多的专业人物ps:各种玩wordpress的友人。 你说呢?
编辑:fkwebs