您只包括WOFF,因此对于不支持WOFF的浏览器没有回退。看到这个了吗article from CSS Tricks about @font-face.
除非您绝对需要在本地包含字体,否则为什么不从Google字体加载Oswald?您可以使用以下插件添加Google字体WP Google Fonts, 或者在开发主题时,在函数中添加以下内容。php:
/** Load Google fonts */
add_action( \'wp_enqueue_scripts\', \'custom_load_google_fonts\' );
function custom_load_google_fonts() {
wp_enqueue_style( \'google-fonts\', \'//fonts.googleapis.com/css?family=Oswald\', array(), PARENT_THEME_VERSION );
}
添加以下CSS(使用回退字体):
h1 {
font-family: "Oswald", Helevetica, Arial, sans-serif;
}