智能摘要 DeepSeek
最近发现WordPress后台加载速度变慢,原因是加载了谷歌字体,而国内无法访问谷歌服务器,导致影响仅限于后台。解决方案是移除这些字体,具体方法是将以下代码添加到vfilmtime2014主题的add.php文件中,或添加到其他主题的functions.php文件中: ```php // 谷歌字体移除 function remove_open_sans() { wp_deregister_style('open-sans'); wp_register_style('open-sans', false); wp_enqueue_style('open-sans', ''); } add_action('init', 'remove_open_sans'); ```