近来谷歌被强,涉及到了wordpress的速度,附上解决办法

谷歌不能访问了,不知道是不是CSS中调用了谷歌字体,反正我的小博客就是卡(ps:以前也卡,但是近来特别卡,不知道是不是心理作用),下面我们来讲下我从网上找到的解决方案

近来谷歌被强,涉及到了wordpress的速度,附上解决办法 - 1
google fonts

方案一:

在wp-content/thems/你的主题文件夹/里面找到functions.php(ps:很多教程里面都不写是wp-include里面的functions.php还是主题里面的functions.php,结果找了很多地方才找到的),在最后加入以下代码。

[codesyntax lang=”php” lines_start=”1″]

<?php
// Remove Open Sans that WP adds from frontend
if (!function_exists('remove_wp_open_sans')) :
    function remove_wp_open_sans() {
        wp_deregister_style( 'open-sans' );
        wp_register_style( 'open-sans', false );
    }
    add_action('wp_enqueue_scripts', 'remove_wp_open_sans');
 
    // Uncomment below to remove from admin
    // add_action('admin_enqueue_scripts', 'remove_wp_open_sans');
endif;
?>

[/codesyntax]

方案二:

安装插件解决,适合连加代码都不会的人,在wordpress后台找到安装插件输入:Remove Open Sans font from WP core,然后点击查找,并安装启用。(ps:我没有试过,如果不行的话还是老老实实的加代码好了)

Leave a Reply

Your email address will not be published. Required fields are marked *