本着能用代码解决绝对不用插件的原则,直接在模板函数中写入:
add_action('wp_loaded', 'wp_disable_google_fonts');
function wp_disable_google_fonts() {
ob_start('wp_disable_google_fonts_regex');
}
function wp_disable_google_fonts_regex($html) {
$html = preg_replace('/<link[^<>]*\/\/fonts\.(googleapis|google|gstatic)\.com[^<>]*>/i', '', $html);return $html;
}