码迷,mamicode.com
首页 > Web开发 > 详细

WordPress 后台禁用Google Open Sans字体,加速网站

时间:2014-10-20 22:40:48      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   使用   sp   div   on   

解决方法很简单,安装启用 Disable Google Fonts 或者 Remove Open Sans font Link from WP core 其中之一即可。或者如果你没有使用WP自带的官方主题,那你添加下面的代码到当前所用的主题的 functions.php 中即可:

/**
 * WordPress 后台禁用Google Open Sans字体,加速网站
 * http://www.wpdaxue.com/disable-google-fonts.html
 */
add_filter( ‘gettext_with_context‘, ‘wpdx_disable_open_sans‘, 888, 4 );
function wpdx_disable_open_sans( $translations, $text, $context, $domain ) {
  if ( ‘Open Sans font: on or off‘ == $context && ‘on‘ == $text ) {
    $translations = ‘off‘;
  }
  return $translations;

用Open Sans 字体教程:

将WordPress后台的open-sans字体加载源从Google Fonts换为360 CDN

http://www.wpdaxue.com/disable-google-fonts.html

WordPress 后台禁用Google Open Sans字体,加速网站

标签:style   blog   http   color   io   使用   sp   div   on   

原文地址:http://www.cnblogs.com/wawahaha/p/4038745.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!