我已经在我的主题函数文件中注册了谷歌字体,然后在样式中使用了它。css。
function register_google_fonts() {
wp_register_style( \'googleFonts\', \'http://fonts.googleapis.com/css?family=Open+Sans:400,300\');
wp_enqueue_style( \'googleFonts\');
}
add_action( \'wp_enqueue_scripts\', \'register_google_fonts\' );
风格css
.cssClass {
font-family: \'Open Sans\', sans-serif;
}
首先,theme将尝试加载Google字体
Open Sans 如果不是,则使用下一种字体
sans-serif