wordpress彻底禁用谷歌字体

zhuanbike 2023-2-18 411

本着能用代码解决绝对不用插件的原则,直接在模板函数中写入:

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;
}


最新回复 (0)
发新帖