更改bbpress tinymce论坛提交文本区的默认字体颜色



因此,当我发现从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放到我的主题根目录下。

没有工作,是我做错了什么吗?

提前感谢。

注:我也在寻找一个解决方案,只有颜色的文本区论坛,而不是WP管理仪表板。

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

最新更新