WordPress-技巧

WordPress 使用技巧。

加速

1
2
3
4
5
6
7
8
9
#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;
}

去掉评论

1
2
#single.php 文件注释
comments_template();