Embedding YouTube videos in WordPress MU

June 16, 2009 by daynah  
Filed under Scripts and Coding, Wordpress

wp-mu-logoAfter working with WordPress Mu, I found that I was unable to embed YouTube videos into a post. Instead, WordPress MU would strip my content out without any warning. After surfing around, I found the solution here:

Fix for including YouTube videos in posts in WordPress MU

To make the fix, open wp-includes/kses.php.

Look for:

if (!CUSTOM_TAGS) {
$allowedposttags = array (

and Add:

'embed' => array (
'style' => array (),
'type' => array (),
'id' => array (),
'height' => array (),
'width' => array (),
'src' => array ()),
'object' => array (
'height' => array (),
'width' => array ()),
'param' => array (
'name' => array (),
'value' => array ()),

to allow embedding of videos.

You can do the same for other HTML codes like

Popularity: 6% [?]

Comments

View Comments to “Embedding YouTube videos in WordPress MU”
  1. Ramnath says:

    Just what I was looking for.

Speak Your Mind

Tell us what you're thinking...
and oh, if you want a pic to show with your comment, go get a gravatar!

blog comments powered by Disqus