原文:https://www.xuanyusong.com/archives/4822
WordPress不显示评论先检查一下数据库是否写入,然而我的问题是数据库已经写入评论但是网页却不显示评论。 首先检查一下主题看看使用的是系统自带的评论还是被主题二次修改的,打开commentlist.php文件,并且找到关键字,显然我所使用的主题将评论指定到function.php的frontopen_comment方法中。
wp_list_comments( array( 'callback' => 'frontopen_comment' ) );
最简单的办法是将上面的代码替换系统自带的
wp_list_comments( array( 'avatar_size' => 40, 'style' => 'ul', 'short_ping' => true, ) );
改完以后评论显示了,但是样式非常丑,于是继续观察数据库发现,comment_type这一项新发的评论都是comment
于是好办了,在frontopen_comment方法中将comment_type = 空、comment 统一进行显示,最终问题解决了。
function frontopen_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; switch ( $comment->comment_type ) : case '' : case 'comment' : ?>
- 本文固定链接: https://www.fengshen.cn/2023/09/wordpress不显示评论/storyofwind/
- 转载请注明: fengshen 发表于 Dream of Wind | 一梦风神
觉得文章有用,微信打赏一元。
