为wordpress编辑器添加选择中文字体功能

  • 时间:2020-05-20 15:19:20
  • 分类:网络文摘
  • 阅读:170 次

wordpress后台自带 TinyMCE 编辑器,足以应对一般的文字编辑,此外还有众多编辑器增强插件为其赋予了更多功能。下面再介绍一个wordpress技巧,不用插件也能为wordpress编辑器增加选择中文字体功能。

为wordpress编辑器添加选择中文字体功能

一、添加如下代码到wordpress主题的 functions.php 文件中:

  1. function custum_fontfamily($initArray){
  2.    $initArray['font_formats'] = "微软雅黑='微软雅黑';宋体='宋体';黑体='黑体';仿宋='仿宋';楷体='楷体';隶书='隶书';幼圆='幼圆';";
  3.    return $initArray;
  4. }
  5. add_filter('tiny_mce_before_init', 'custum_fontfamily');

二、由于默认的 TinyMCE 编辑器并没有选择字体功能,还需将如下代码也一同加到 functions.php 文件中:

  1. function enable_more_buttons($buttons) {
  2. $buttons[] = 'styleselect';
  3. $buttons[] = 'fontselect';
  4. return $buttons;
  5. }
  6. add_filter("mce_buttons", "enable_more_buttons");

注:此方法适用于WordPress 4.0,之前版本未试。

此外,你还可以试试让WordPress编辑器TinyMCE显示隐藏按钮

推荐阅读:
The Process Killing Algorithms using Depth First Search or Bread  Breadth-First Search Algorithm to Solve Puzzle (Rotting Oranges)  Facebook Onsite Interview Preparation Part 1: Motivation/Bahavio  Celebrate WordPress’ 13th Birthday With These Interesting Facts  5 Ways to Use Your Smartphone to Build a Better Blog  The Most Expensive Domain Sales Ever  15 Ways Of How Not To Kill Your Leadership Authority  Study Shows Strong Growth of Tech Inventions to Fight Climate Ch  Interested in Bitcoins? Here are 10 Blogs You Need to Check Out  Your Blog’s Been Hacked! Here’s What You Need to Do 
评论列表
添加评论