你可以把它放在header.php
启动之间<head>
和关闭</head>
标签,它应该正常工作。
或者,更好的解决方案可能是将样式排入函数中。php
function google_fonts() {
$query_args = array(
\'family\' => \'Sigmar+One\'
);
wp_register_style( \'google_fonts\', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null );
}
add_action(\'wp_enqueue_scripts\', \'google_fonts\');