I have my site with WordpressMU but closed for other people to create blog.
So, i find the way to enable javascript and enable som other tags i want (like iframe, style, span, and some others)
I want to enable this tags because i write my own blog system in the past, but now i like to change theme and things like that so i adopt Wordpress ... and select MU for futures blogs i want to make in the same domain
THE PROBLEM:
Well, i change some lines in the kses.php file like
if (!CUSTOM_TAGS) {
$allowedposttags = array(
'script' => array(
'type' => array(),
'src' => array()
),
'span' => array(
'style' => array(),
'class' => array(),
),
etc...
Now i don't know how to enable some internal tags, for example
<span style="color:#FFF">AAA</span>
Is transformed to this
<span style="#FFF">AAA</span>
So the "color:" part is erased
This happen when i save a Widget, but works OK in the normal post
I hope someone can guide my
Thank you very much.
PD: Also i comment the last 2 lines of the kses.php file
//add_action('init', 'kses_init');
//add_action('set_current_user', 'kses_init');
(I hope this is usefull for someone)