Guest User

Untitled

a guest
Nov 18th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function convert_textarea_to_wysiwyg() {
  2. $id=$_GET["tag_ID"];
  3. $content="";
  4. $editor_id="Cat_meta[cat_second_description]";
  5. $settings= array(
  6. 'tinymce' => array(
  7. 'selector' => '#Cat_meta[cat_second_description]',
  8. 'content_css' => false,
  9. 'inline' => true,),
  10. );
  11.  
  12. wp_editor( unescape($content), $editor_id, $settings );
  13. }
  14.  
  15. add_filter('edit_category_form', 'convert_textarea_to_wysiwyg');
Add Comment
Please, Sign In to add comment