分类目录

链接

2024 年 5 月
 12345
6789101112
13141516171819
20212223242526
2728293031  

近期文章

热门标签

新人福利,免费薅羊毛

禁止wordpress加载google字体 WordPress禁用Open Sans

//禁用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();

Wordpress 暂无评论 阅读(1,028)