我正在为Twenty Twelve v1.0创建一个子主题,并且想要删除Open Sans字体。
Open Sans被添加到Twenty Twelve的functions.php中:
wp_enqueue_style( 'twentytwelve-fonts', add_query_arg( $query_args, "$protocol://fonts.googleapis.com/css" ), array(), null );
我尝试在childtheme的functions.php中注销/退出样式表(请参见下面的示例),但没有任何效果:
function example_scripts_styles() {
wp_deregister_style( 'twentytwelve-fonts' );
wp_dequeue_style( 'twentytwelve-fonts' );
}
add_action( 'wp_enqueue_scripts', 'example_scripts_styles' );
有什么想法可以删除此文件吗?谢谢!