Advertisement
iamdangavin

wysiwyg

Jul 7th, 2011
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. if ( (strpos($_SERVER['SCRIPT_NAME'], 'wp-admin/user-edit.php')) || (strpos($_SERVER['SCRIPT_NAME'], 'wp-admin/profile.php'))) {
  2.     add_action('admin_head', 'add_tinymce');
  3. }
  4.  
  5. remove_filter('pre_user_description', 'wp_filter_kses');
  6. add_filter('pre_user_description', 'wpautop');
  7.  
  8. function add_tinymce() {
  9.  
  10. if (function_exists('wp_tiny_mce')) {  
  11.  
  12.         add_filter( 'teeny_mce_before_init', create_function( '$a', '$a["width"] = "600"; $a["height"] = "340"; $a["onpageload"] = ""; $a["mode"] = "exact"; $a["elements"] = "description"; $a["editor_selector"] = "mceEditor"; return $a;' ) );
  13.         wp_tiny_mce( true );
  14.  
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement