声明:本网站没有任何资源,所有内容均为资源介绍,如需购买请通过官方购买正版资源
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主题前台载入了谷歌字体文件则找到相应的代码删除即可。