如何使用 add_editor_style() 包含外部 css,例如 google font http://fonts.googleapis.com/css?family=Lato
?
当我添加 add_editor_style('http://fonts.googleapis.com/css?family=Lato');
时,在源代码中将显示如下:
<link rel="stylesheet" data-mce-href="http://203.223.152.159/~marineac/wp-content/themes/twentyten/http://fonts.googleapis.com/css?family=Lato&ver=342-201106301" href="http://203.223.152.159/~marineac/wp-content/themes/twentyten/http://fonts.googleapis.com/css?family=Lato&ver=342-201106301">
你应该使用 mce_css
筛选。未测试:
function so_17961871( $mce_css ) {
if ( ! empty( $mce_css ) )
$mce_css .= ',';
$mce_css .= 'http://fonts.googleapis.com/css?family=Lato';
return $mce_css;
}
add_filter( 'mce_css', 'so_17961871' );
我是一名优秀的程序员,十分优秀!