禁止wordpress仪表盘加载谷歌字体链接

  • 时间:2020-05-27 19:03:24
  • 分类:网络文摘
  • 阅读:160 次

细心的朋友或许会发现近来登录wordpress后,仪表盘页面的加载速度明显变缓,这是由于wordpress仪表盘加载谷歌字体链接的原因,会经常导致页面卡在 fonts.googleapis.com 链接上。众所周知,谷歌服务在国内访问很不稳定,加载此链接严重影响后台页面显示速度。解决此问题的方法如下:

禁止wordpress仪表盘加载谷歌字体链接

禁止wordpress仪表盘加载谷歌字体链接

粘贴如下代码到当前主题的functions.php文件中:

  1. function coolwp_remove_open_sans_from_wp_core() {
  2.     wp_deregister_style( 'open-sans' );
  3.     wp_register_style( 'open-sans', false );
  4.     wp_enqueue_style('open-sans','');
  5. }
  6. 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行。

推荐阅读:
Computing the Longest Recurring Cycle in its Decimal Fraction Pa  How to Use Priority Queue in Java or C++ to Compute Last Stone W  5 Most Important SEO Keyword Metrics, Explained  Why You Should Remove Inactive Subscribers from Your Email List  8 Ways To Get A Perfect Site Health Score In WordPress  The Right (and Wrong) Ways to Approach Controversy in Blogging  7 Ways To Take Advantage of 404 Error Pages  7 Ways to Enhance Your Blog with Video Advertising  California Consumer Privacy Act (CCPA) Compliance Guide For AdSe  What Is WordPress Live Chat and How Do You Implement It? 
评论列表
添加评论