禁用字体Google Fonts Open Sans,会不会对国外访客有影响?
本帖最后由 hardrock 于 2014-12-5 23:58 编辑用了以下代码后,我上自己网站慢的问题解决了,但是我网站的访客是美国人,他们访问我网站会不会变慢,他们看网站的字体格局会不会改变?
http://www.skyshe.cn/2014/08/26/80.html
WordPress原来字体使用的是Google Fonts Open Sans,在国内访问不稳定所以会延时,解决方法很简单:直接添加到主题的functions.php中即可禁用后台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;
不会影响,就是字体恢复为默认,没那么好看了
代码报错,麻烦测试一下再放出来,免得浪费大家时间
我用的禁后台gg字体:
//* remove google fonts in admin
function coolwp_remove_open_sans_from_wp_core() {
wp_deregister_style( 'open-sans' );
wp_register_style( 'open-sans', false );
wp_enqueue_style('open-sans','');
}
add_action( 'init', 'coolwp_remove_open_sans_from_wp_core' );
测试过,禁用谷歌字库不会影响速度:)
禁止wordpress所有类型的自动更新
http://www.weste.net/2013/10-26/94053.html
http://heweiguang.com/blog/?p=3472
http://www.wpdaxue.com/configuring-automatic-background-updates.html
英文原文:http://codex.wordpress.org/Disabling_Automatic_Background_Updates
页:
[1]