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;
以上代码加入到当前的主题functions.php文件即可,至于wordpress主题前台载入了谷歌字体文件则找到相应的代码删除即可。
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!