Font Awesome wp_enqueue_style 时间:2018-11-25 作者:thedroidgamer 我一直在尝试获取旧服务器上的相同代码,以便在新服务器上工作。这是迄今为止我掌握的代码:function enqueue_load_fa() { wp_enqueue_style( \'load-fa\', \'https://use.fontawesome.com/releases/v5.5.0/css/all.css\' ); } 我遇到的问题是在我的测试现场http://thedroidgamer.info/2018/11/25/hello-world/ 它不工作,但在我的另一个是。请参见下面的屏幕截图:https://scrnshot.app/DfNnwwV3ba3.png两台服务器的编码完全相同。我总共尝试了3台服务器,其中只有一台工作正常,代码相同。我不明白为什么它根本没有被接受。 1 个回复 SO网友:Alt C Try this,function enqueue_load_fa() { wp_enqueue_style( \'load-fa\', \'https://use.fontawesome.com/releases/v5.5.0/css/all.css\' ); } add_action( \'wp_enqueue_scripts\', \'enqueue_load_fa\'); 结束 文章导航