您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
wordpress设置中文字体的方法
雪青2023-06-27 23:17:23WordPress教程已有人查阅
导读在WordPress中设置中文字体的方法如下:将如下代码加到当前主题的 functions.php 模板文件中:
在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把所有文章分类单独一个页面的方法
复制一个page.php文件改为page-abc.php,并在WordPress后台新建一个页面,固定链接地址改为abc(这个abc可随意,但必须跟page-abc相对应)。 -
WordPress添加Meta Box的方法教程
WordPress添加Meta Box的方法,需要使用到add meta boxes Action,该Action允许我们为任何文章类型注册Meta Box,在该Action中 -
怎么删除WordPress的Admin Bar
WordPress 在用户登陆的情况下会出现 Admin Bar,让我们可以进行一些快速操作,但是如果主题已经实现了相关功能或者不需要该功能。 -
wordpress安装手机主题的教程
针对手机自适应的主题网上也有一些,这里我就找到用户使用较多的两款Mobile-better(grey)和Mobile-better(white)主题。
留言与评论 (共有 条评论) |