$meta"; } else { // Apply filter to wp_editor() settings $editor_settings = apply_filters( 'rwmb_wysiwyg_settings', array( 'editor_class' => 'rwmb-wysiwyg' ), 10, 1 ); // Using output buffering because wp_editor() echos directly ob_start( ); // Use new wp_editor() since WP 3.3 wp_editor( $meta, $field['id'], $editor_settings ); return ob_get_clean( ); } } } }