【发布时间】:2020-03-23 15:10:33
【问题描述】:
我想知道如何使用我自己的functions.php 来阻止add_editor_style( $protocol.$universal_css_url ); 运行(所以我的意思是通过钩子或类似的东西)?
有没有办法禁用或删除它?喜欢:remove_editor_style( $protocol.$universal_css_url ); 那太好了!不幸的是,这段代码不起作用..
谢谢!
【问题讨论】:
-
add_editor_style 将样式表添加到全局 $editor_styles 数组变量中。您可以尝试清除该数组!?
-
明确我的意思是从数组中删除不需要的样式表。
-
啊太棒了!如何从 $editor_styles 数组中删除某些内容?
标签: php wordpress function plugins hook