首先,在主题目录中添加一个CSS文件(我称之为tiny.CSS)。然后将以下内容添加到主题的函数中。php:
// Add custom styles to TinyMCE editor
if ( ! function_exists(\'tdav_css\') ) {
function tdav_css($wp) {
$wp .= \',\' . get_bloginfo(\'stylesheet_directory\') . \'/tiny.css\';
return $wp;
}
}
add_filter( \'mce_css\', \'tdav_css\' );
最后,将此CSS添加到tiny。css
.mceContentBody.wp-editor {
background-color:#000000;
}
。。。将#000000替换为
HTML color code 你想要什么颜色的。