我似乎无法找到答案。我想知道哪个文件wordpress添加了custom.css
的导入语句。
我想这样做,以便我可以在它之后导入另一个css文件。
我没有使用任何css插件。
答案 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'));