为wordpress后台添加微软雅黑字体
- 时间:2020-05-22 15:47:15
- 分类:网络文摘
- 阅读:145 次
自wordpress 3.3中文版以后,官方一直没有为后台添加微软雅黑字体。虽然在高版本IE中默认显示为微软雅黑,但在其它第三方浏览器,比如火狐、Chrome显示的是"Open Sans",sans-serif字体,显示效果欠佳。可以通过下面的wordpress技巧为后台添加微软雅黑字体,以期获得更佳显示效果。

方法:添加如下代码到wordpress主题的functions.php文件中即可:
- function admin_lettering(){
- echo'<style type="text/css">
- body{ font-family: Microsoft YaHei;}
- </style>';
- }
- add_action('admin_head', 'admin_lettering');
如果你喜欢其它字体,也可以使用此方法添加。
微软雅黑体简介:微软雅黑体由中国北大方正电子有限公司设计,属于无衬线黑体,字形略呈扁方而饱满,笔画简洁而舒展,易于阅读,全面支持 ClearType技术的中文界面显示。微软雅黑字体随简体中文版windows Vista一起发布,是Windows Vista以上系统版本的默认字体。另外,Microsoft Office 2007简体中文版也附带这个字体。
推荐阅读:Partnering With Non-Profits Is a Great Way to Promote Your Blog How to Raise Your Instagram Game for Your Blog Young Inspirational Blogger Passes Away After Short Cancer Battl 4 Remote Working Benefits Bloggers Enjoy How to Get Your Blog to be Ranked like a Leading Brand in 2017 Second Missing Pakastani Blogger Found Fleeing Country Blogger Catches Several Runners Cheating In Philadelphia Maratho Melania Trump Given The Green Light To Continue In Libel Suit Ag How to Be a Better Financial Blogger [2017] Review Of Kajabi: All-In-One Online Course & Membersh
- 评论列表
-
- 添加评论