重庆小潘seo博客

当前位置:首页 > 重庆网络营销 > 小潘杂谈 >

小潘杂谈

wordpress怎么设置中文字体

时间:2020-09-17 10:40:08 作者:重庆seo小潘 来源:
在WordPress中设置中文字体的方法如下: 将如下代码加到当前主题的 functions.php 模板文件中:function custum_fontfamily($initArray){$initArray[font_formats] = 微软雅黑=微软雅黑;宋体=宋体;黑体=黑体;仿宋=仿宋;楷体=楷体;隶书=隶书;幼圆=幼圆;;retur

wordpress怎么设置中文字体

在WordPress中设置中文字体的方法如下:

将如下代码加到当前主题的 functions.php 模板文件中:function custum_fontfamily($initArray){$initArray['font_formats'] = "微软雅黑='微软雅黑';宋体='宋体';黑体='黑体';仿宋='仿宋';楷体='楷体';隶书='隶书';幼圆='幼圆';";return $initArray;}add_filter('tiny_mce_before_init', 'custum_fontfamily');WordPress默认TinyMCE编辑器并没有选择字体功能,所以还需要把下面代码也一同加到 functions.php 模板文件中:function enable_more_buttons($buttons) {$buttons[] = 'styleselect';$buttons[] = 'fontselect';return $buttons;}add_filter("mce_buttons", "enable_more_buttons");更多wordpress相关技术文章,请访问wordpress教程栏目进行学习!以上就是wordpress怎么设置中文字体的详细内容,更多请关注小潘博客其它相关文章!