gpt4 book ai didi

css - 如何在 wordpress 中使用 add_editor_style() 包含绝对 css 路径

转载 作者:太空宇宙 更新时间:2023-11-04 04:27:32 24 4
gpt4 key购买 nike

如何使用 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&amp;ver=342-201106301" href="http://203.223.152.159/~marineac/wp-content/themes/twentyten/http://fonts.googleapis.com/css?family=Lato&amp;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' );

关于css - 如何在 wordpress 中使用 add_editor_style() 包含绝对 css 路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17961871/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com