用过wordpress的都知道,编辑框会自动格式化一些代码,如果需要让那个span不被格式化,需要用到下面代码
//ALLOW SPAN TAG IN WORDPRESS EDITOR 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');
发表评论