加载客户header.css之后的主题的style.css

时间:2020-10-20 12:37:07

标签: php html css wordpress

在我的functions.php底部,有以下PHP代码:

wp_enqueue_style("header", get_template_directory_uri() . "/css/header.css",  25);

它加载CSS,但是它位于链的最顶端。我想覆盖style.css中的设置,该设置稍后会在wp_head函数中加载。我已经将优先级(如您在此处看到的)设置为25,但是没有任何区别。

以后如何加载?

1 个答案:

答案 0 :(得分:1)

在父主题中找到要放入style.css的位置,并获取该样式表(最可能是“样式”)的句柄,并在依赖项arg中使用它。

wp_enqueue_style("header", get_template_directory_uri() . "/css/header.css",  array("style"));

这告诉WordPress您的样式表取决于“样式”样式表,并将相应地更改加载顺序

wp_enqueue_style(“ header”,get_template_directory_uri()。“ /css/header.css”,25);