解决方法是添加下面的主题在目前的代码在functions.php:
//禁用Open Sans
class Disable_Google_Fonts {
public function __construct() {
add_filter( 'gettext_with_context', array( $this, 'disable_open_sans' ), 888, 4 );
}
public function disable_open_sans( $translations, $text, $context, $domain ) {
if ( 'Open Sans font: on or off' == $context && 'on' == $text ) {
$translations = 'off';
}
return $translations;
}
}
$disable_google_fonts = new Disable_Google_Fonts;
相关文章
- 07-18wordpress修改后台站点地址后无法打开的2种解决办法
- 07-18wordpress后台打开缓慢的临时解决方法
- 07-18Wordpress 运行缓慢的解决方法
- 07-18全面提升WordPress前台和后台的 打开速度的方案
- 07-18wordpress修改后台站点地址后无法打开的解决办法
- 07-18Openmeeting 网页打开缓慢,视频卡的一个解决方法
- 07-18wordpress后台加载ajax.googleapis.com导致打开速度很慢的解决方案
- 07-18WordPress使用国外主题打开很慢的解决方法
- 07-18黄聪:wordpress后台加载ajax.googleapis.com导致打开速度很慢的解决方案
- 07-18黄聪:wordpress后台导致fonts.googleapis.com、ajax.googleapis.com加载慢的解决方法