禁止wordpress仪表盘加载谷歌字体链接
- 时间:2020-05-27 19:03:24
- 分类:网络文摘
- 阅读:107 次
细心的朋友或许会发现近来登录wordpress后,仪表盘页面的加载速度明显变缓,这是由于wordpress仪表盘加载谷歌字体链接的原因,会经常导致页面卡在 fonts.googleapis.com 链接上。众所周知,谷歌服务在国内访问很不稳定,加载此链接严重影响后台页面显示速度。解决此问题的方法如下:

禁止wordpress仪表盘加载谷歌字体链接
粘贴如下代码到当前主题的functions.php文件中:
- 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后台,页面加载速度明显提升。
以上代码来源于 Remove Open Sans font from WP core 插件,也可直接安装此插件来解决。相似功能的插件还有 Disable Google Fonts 。
另外,一些国外主题也经常采用谷歌字体链接,上述方法貌似对前台主题加载谷歌字体链接无效。
注:wordpress加载谷歌字体代码位于:wordpress\wp-includes\script-loader.php第580行。
推荐阅读:5 Ways a Blog Can Help Your Business Grow How to Create Killer Project Proposals to Land Five-Figure Blogg Why Local SEO Is the Best Option for Promoting Your Website Greedy Algorithm to Group the Numbers/Items Given the Group Size Design A Leaderboard using Priority Queue, Hash Map (unordered_m 5 Innovative Ways Ecommerce Businesses Are Leveraging Machine Le How to Compute the Catalan Numbers using Dynamic Programming Alg C++ Coding Reference: Partial Sorting with nth_element from Algo Microbit Programming: Introduction to AI – Letting Compute Subtract the Product and Sum of Digits of an Integer
- 评论列表
-
- 添加评论