wordpress为哪个文件添加了custom.css的import语句

时间:2018-03-25 17:44:06

标签: css wordpress

我似乎无法找到答案。我想知道哪个文件wordpress添加了custom.css的导入语句。

我想这样做,以便我可以在它之后导入另一个css文件。

我没有使用任何css插件。

1 个答案:

答案 0 :(得分:0)

在WordPress中使用@import添加自定义CSS不再是最佳做法,但您可以使用该方法。最佳做法是在functions.php。

中使用函数wp_enqueue_style()
wp_enqueue_style ('theme-style', get_template_directory_uri().'/css/style.css');
wp_enqueue_style ('my-style', get_template_directory_uri().'/css/custom.css', array('theme-style'));