因此,在我发现改变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并将其放在我的主题根目录中。
没有用,有什么我做错了吗?
提前致谢。
P.S。我也在寻找一种解决方案,只为论坛设置textarea,而不是WP管理仪表板。
答案 0 :(得分:1)
可能是因为某种缓存(客户端或服务器端),如果不了解所涉及的系统及其配置,就无法从这里看出来