更改WordPress主题全局字体

加入以下自定义CSS即可

/*
您可以在此处加入您的CSS。

点击上方的帮助图标来了解更多。
*/

/*字体设定*/
*:not([class*="icon"]):not(i) {
font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma, "Hiragino Sans GB", "Microsoft Yahei", sans-serif !important;
}

/*字体阴影*/
*{text-shadow: 0.05em 0.05em 0.05em #a9a9a9; }
继续阅读

VPS 常用命令

带宽测试

wget https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py
python speedtest.py --share
python speedtest.py --list
python speedtest.py --share --server 6962

wget -qO- bench.sh | bash
wget http://cachefly.cachefly.net/100mb.test && rm -f 100mb.test

硬盘内存处理器
df -h
free -m
dd if=/dev/zero of=test bs=64k count=16k conv=fdatasync && rm -f test
cat /proc/cpuinfo

继续阅读