修改7b2认证图标
原文链接:https://www.xiaohulizyw.com/2191.html
原生的认证图标有的人不是很喜欢,喜欢自己去自定义,那么如何去修改?
1、首先打开主题函数文件路径为:/wp-content/themes/b2/functions.php
第23
行的常量
define('B2_VERIFY_ICON','<i class="b2-vrenzhengguanli b2font b2-color"></i>');
代码中的中的b2-vrenzhengguanli
是图标样式,b2-color
是图标的颜色。
本站使用的是
<i class="xutian-personal-verify"></i>
那么xutian-personal-verify
就是图标的样式了。
xutian-personal-verify
的样式代码:
[content_hide]
.xutian-personal-verify{position: absolute;background-image: url(//img.ahap.cn/file/ahap/verify-icon.svg);}
[/content_hide]
position: absolute;
是绝对路径,子绝父相;background-image: url
是引入图标,png
、svg
、jpg
等。