为wordpress编辑器添加选择中文字体功能
- 时间:2020-05-20 15:19:20
- 分类:网络文摘
- 阅读:165 次
wordpress后台自带 TinyMCE 编辑器,足以应对一般的文字编辑,此外还有众多编辑器增强插件为其赋予了更多功能。下面再介绍一个wordpress技巧,不用插件也能为wordpress编辑器增加选择中文字体功能。

一、添加如下代码到wordpress主题的 functions.php 文件中:
- function custum_fontfamily($initArray){
- $initArray['font_formats'] = "微软雅黑='微软雅黑';宋体='宋体';黑体='黑体';仿宋='仿宋';楷体='楷体';隶书='隶书';幼圆='幼圆';";
- return $initArray;
- }
- add_filter('tiny_mce_before_init', 'custum_fontfamily');
二、由于默认的 TinyMCE 编辑器并没有选择字体功能,还需将如下代码也一同加到 functions.php 文件中:
- function enable_more_buttons($buttons) {
- $buttons[] = 'styleselect';
- $buttons[] = 'fontselect';
- return $buttons;
- }
- add_filter("mce_buttons", "enable_more_buttons");
注:此方法适用于WordPress 4.0,之前版本未试。
此外,你还可以试试让WordPress编辑器TinyMCE显示隐藏按钮
推荐阅读:CloudFlare Enterprise Plan Overview Powerful Integers by Bruteforce Algorithm using C++ How to Check if Any Three Points can Make a Triangle? How to Convert Set to Vector in C++? Peeple App Embodies the Worst of Social Media 10 Best Writing Quotes for Bloggers Will Dorsey be Twitter’s Next CEO? How to Use Email Etiquette in the Age of Email Overload Welcome to Twitter, Edward Snowden Goodbye, Book Clubs: Book Lovers Unite on Social Media
- 评论列表
-
- 添加评论