因此,在我发现从 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 管理仪表板。