子比文章评论区添加用户彩色ID号码,也可以加个靓号的判断,还是比较简单。

WordPress子比文章评论区添加用户彩色ID号码 第5张插图

修改文件:

子比主题: zib-comments-list.php (inc/functions/zib-comments-list.php)

找到大概27行的

$user_id   = $comment->user_id;

在其下面添加:

//ID前面加零补足6位数
$uesrid_L6 = str_pad($user_id, 6, "0", STR_PAD_LEFT);

大概在第52行找到

<name class="flex ac flex1">' . $user_name . $badge .'</name>

替换为: