我的WordPress主题非常简约,甚至没有functions.php
文件但我想在我的网站上使用谷歌字体。我在别处(www.designbombs.com/add-google-fonts-wordpress)读到,嵌入谷歌字体的推荐方法是使用wp_enqueue_style()
作用所以我需要一个functions.php
文件,我创建了一个。
然后,根据博客帖子中的说明,我将此代码包含在其中。
function custom_add_google_fonts() {
wp_enqueue_style( \'custom-google-fonts\', \'https://fonts.googleapis.com/css?family=Abhaya+Libre:300,400,400i\', false );
}
add_action( \'wp_enqueue_scripts\', \'custom_add_google_fonts\' );
现在,我的网站嵌入了我需要的特定字体,我可以毫无问题地使用它,但有些地方出了问题。
我可以看到我在新functions.php
文件,从我的仪表板,也从前端。
如果有人能帮助我隐藏这些代码,使其不会出现在我的网站上,我将不胜感激。