View Single Post
Old 05-04-2007, 11:33 AM  
donnie
Confirmed User
 
Join Date: Jan 2003
Posts: 1,630
WP uses filters and you can read about it here:

http://codex.wordpress.org/Filters

To embed videos you need to make this change:

add_filter('content_save_pre', 'wp_filter_post_kses');
to
remove_filter('content_save_pre', 'wp_filter_post_kses');

You do this in kses.php

BUT there is a security risk in doing this. Read more at the URL above...
donnie is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote