我正在尝试使用以下代码将我的WP站点上的typekit排入函数中:
/**
* TypeKit Fonts
*
* @since Theme 1.0
*/
function theme_typekit() {
wp_enqueue_script( \'theme_typekit\', \'//use.typekit.net/xxxxxxx.js\');
}
add_action( \'wp_enqueue_scripts\', \'theme_typekit\' );
function theme_typekit_inline() {
if ( wp_script_is( \'theme_typekit\', \'done\' ) ) { ?>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<?php }
}
add_action( \'wp_head\', \'theme_typekit_inline\' );
代码似乎工作正常,但当url在前端调用时,控制台中显示404作为链接,
https://use.typekit.net/xxxxxxx.js
知道为什么找不到吗?注意,我使用的是有效的typekit代码。