1. 首页
  2. Blog

WordPress 编辑器加入字体选择

在function.php文件中加入以下代码(显示字体选择框)

function add_editor_buttons($buttons) {
    $buttons[] = 'styleselect';
    $buttons[] = 'fontselect';
    return $buttons;
}
add_filter("mce_buttons_3", "add_editor_buttons");

在function.php加入以下代码(添加字体)

function add_fontfamily($initArray){
	$initArray['font_formats'] = "微软雅黑='微软雅黑';宋体='宋体';黑体='黑体';仿宋='仿宋';楷体='楷体';隶书='隶书';幼圆='幼圆';Arial='Arial';";
	return $initArray;
}
add_filter('tiny_mce_before_init', 'add_fontfamily');

转载自:https://www.boke8.net/wordpress-tinymce-increase-chinese-fonts.html

END

原创文章,作者:Tingwep,如若转载,请注明出处:https://tingwep.cn/blog/id=389

发表评论

邮箱地址不会被公开。