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

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

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显示隐藏按钮

推荐阅读:
How to Create Killer Project Proposals to Land Five-Figure Blogg  Why Local SEO Is the Best Option for Promoting Your Website  Greedy Algorithm to Group the Numbers/Items Given the Group Size  Design A Leaderboard using Priority Queue, Hash Map (unordered_m  5 Innovative Ways Ecommerce Businesses Are Leveraging Machine Le  How to Compute the Catalan Numbers using Dynamic Programming Alg  C++ Coding Reference: Partial Sorting with nth_element from Algo  Microbit Programming: Introduction to AI – Letting Compute  Subtract the Product and Sum of Digits of an Integer  Leetcode’s Online Code Debugger 
评论列表
添加评论