1

因此,在我发现从 tinymce 插件文件夹更改 content.css 不起作用后,我通过向 functions.php 添加过滤器尝试了 content_css 例程:

function tinymce_other_css_for_content( $init ) {
$init['content_css'] = get_bloginfo('stylesheet_url') . "customtinymce.css";
return $init;
}

add_filter('tiny_mce_before_init', 'tinymce_other_css_for_content');

并添加

body#tinymce.mceContentBody.bbp_reply_content.post-type-topic.wp-editor{
   color: red !important; /* FF requires a important here */
}

到 customtinymce.css 并将其放在我的主题根目录中。

没用,是不是我做错了什么?

提前致谢。

PS 我也在寻找一种解决方案,它只为论坛的文本区域着色,而不是 WP 管理仪表板。

4

1 回答 1

1

可能是由于某种缓存(客户端或服务器端),如果不了解所涉及的系统及其配置,则无法从这里判断

于 2013-03-25T08:32:58.250 回答