gpt4 book ai didi

php - 尝试从子主题中的父主题覆盖/附加 editor-style.css

转载 作者:行者123 更新时间:2023-12-05 06:26:16 24 4
gpt4 key购买 nike

我正在使用旧的二十一点来完成一项简单的工作,并使用子项覆盖样式。

问题是,当我在子主题文件夹中添加 editor-child.css 时,编辑器样式不会被覆盖。在子主题 functions.php(包装在 after_setup_theme 中)中添加 add_editor_style 似乎不起作用。我不能加载多个编辑器样式或者这里有什么问题?我无法弄清楚如何在古腾堡覆盖这个丑陋的 21 编辑器 css。禁用它甚至可能更好,但即使这样也无法使用 remove_editor_style。而且我无法使用 google 或 stackoverflow 找到有关该主题的任何内容。

<?php
// In the child theme functions.php. I simply want to use the style.css by the child theme as an extra editor style
function wysiwyg_styles() {
add_editor_style( get_stylesheet_uri() );
}
add_action( 'after_setup_theme', 'wysiwyg_styles');
?>

admin 中没有加载 css(删除 chache 和 cookie 后)

最佳答案

发生的事情是您使用了错误的操作 Hook ...您应该使用 admin_enqueue_scripts Hook 。

尝试这样做......并检查它是否适合你:

add_action('admin_enqueue_scripts', function () {
wp_enqueue_style('admin-styles', get_stylesheet_directory_uri().'/pathToYour.css');
});

// If the above does not work change get_stylesheet_directory_uri() for get_template_directory_uri()

希望这对您有所帮助,祝您好运。

关于php - 尝试从子主题中的父主题覆盖/附加 editor-style.css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56329908/

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