WordPress-技巧 发表于 2018-08-23 | 分类于 Domain | | WordPress 使用技巧。 加速123456789#functions.php 文件添加// 后台禁用Google Open Sans字体,加速网站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;} 去掉评论12#single.php 文件注释comments_template();