gpt4 book ai didi

html - 删除 wp_head 中的默认 css 样式标签

转载 作者:行者123 更新时间:2023-11-28 04:34:45 25 4
gpt4 key购买 nike

我想删除 wp_head 中的默认 css 样式标签,这样:

之前:

<head>
<link/>
<script/>
<style>
...
...
...
</style>
</head>

之后:

<head>
<link/>
<script/>
</head>

我怎样才能做到这一点?

最佳答案

搜索wp_enqueue_style 方法并显示哪些方法调用更深。

wp_enqueue_style > wp_styles > $wp_styles

跟踪方法后,您会看到,您必须处理变量 $wp_styles

在您的主题中创建一个 init-Action 并覆盖 $wp_styles:

function removeStyles() {
global $wp_styles;

$wp_styles = null;
}

就是这样。另一种方法是让所有已注册的样式名称注销它。

关于html - 删除 wp_head 中的默认 css 样式标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41547119/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com