I\'m creating a meta box for my custom post type. There are multiple fields where I would like to use wysiwyg editor rather than . Is is possibl
You can use the wordpress default text editor in the metabox using
add_action( 'edit_page_form', 'my_second_editor' ); function my_second_editor() { // get and set $content somehow... wp_editor( $content, 'mysecondeditor' ); }