Advertisement
chipbennett

Untitled

Mar 25th, 2011
1,562
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. function mytheme_tinymce_config( $init ) {
  2.     $valid_iframe = 'iframe[id|class|title|style|align|frameborder|height|longdesc|marginheight|marginwidth|name|scrolling|src|width]';
  3.     if ( isset( $init['extended_valid_elements'] ) ) {
  4.         $init['extended_valid_elements'] .= ',' . $valid_iframe;
  5.     } else {
  6.         $init['extended_valid_elements'] = $valid_iframe;
  7.     }
  8.     return $init;
  9. }
  10. add_filter('tiny_mce_before_init', 'mytheme_tinymce_config');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement