/**
* 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;
}
标签存档: wp
WordPress 后台禁用Google Open Sans字体,加速网站
作者: amyflash
日期: 2014年11月27日
没有评论