GFW 禁封谷歌 IP 之后, WordPress 后台打开慢,甚至无法更新 WordPress 了……
把下面代码添加到主题函数模板 functions.php 的最后即可:
function 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', 'remove_open_sans_from_wp_core' );
发表回复