$attr['name'], // 'media_buttons' => false, // 'textarea_rows' => 5, // 'editor_css' => '', 'teeny' => true, ]; ob_start(); wp_editor( $attr['value'], // Content $attr['id'], // Editor ID $settings // Settings ); $output = ob_get_clean(); return sprintf( '%s%s%s', $this->label(), $output, $this->description() ); } }