在WordPress编辑器中允许span标记
1 2 3 4 5 6 7 8 9 //在WordPress编辑器中允许span标记 function ove…
1
2
3
4
5
6
7
8
9
|
//在WordPress编辑器中允许span标记
function override_mce_options($initArray)
{
$opts = ‘*[*]’;
$initArray[‘valid_elements’] = $opts;
$initArray[‘extended_valid_elements’] = $opts;
return $initArray;
}
add_filter(‘tiny_mce_before_init’, ‘override_mce_options’);
|
类别:WordPress开发、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!