我有这个代码直接从一个默认主题加载两个谷歌字体,除了我更改了函数名。字体未加载,而是显示无衬线字体。如何对此进行故障排除?
//add Google fonts
add_action( \'wp_enqueue_scripts\', \'sg_add_google_fonts\' );
function sg_add_google_fonts() {
$query_args = array(
\'family\' => \'Dosis:400,600,700|Roboto:400,400italic,700,700italic\'
);
wp_register_style(
\'google-fonts\',
add_query_arg( $query_args, \'//fonts.googleapis.com/css\' ),
array(),
null
);
wp_enqueue_style( \'google-fonts\' );
}
时尚。css
h1, h2, h3, h4, h5, h6 {
font-family: \'Dosis\', sans-serif;
font-weight:700;
font-size: 32px;
color: #3c3c3c;
}
body {
font-family: \'Roboto\', sans-serif;
font-weight:400;
font-size: 24px;
color: #3c3c3c;
}
事实上,我从来都无法将任何内容排队到WP中——脚本、样式表,什么都没有,最后在标题中对URL进行了硬编码。我想找出一种通用方法,如何在使用排队时找出不起作用的内容。是否有某种错误消息可以输出?
非常感谢。