Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I really would like a nice frontside wysiwyg-editor for the P2 theme. Preferable a light one with only the most basic controls. Tried front-end-editor but not to fond of it´s looks and UX. Plain and simple are key.

share|improve this question

2 Answers

WYSIhtml is one that has been getting a lot of love from people these days. See: http://xing.github.com/wysihtml5/

But, 'nice' is very subjective.

share|improve this answer

I think that the built-in wp_editor can do this job pretty nice.

Sure tinymce is cinda heavy but its already loaded and cached in the browser. So why dont use WordPress native functions instead of using another lib? Look how simple it is to register an editor:

wp_editor('', 'wpse', array(
   'teeny'      => true,
   'media_buttons' => false
));

I think its pretty sweet: enter image description here

Read more about the parameters and how it wokrs in WordPress-Codex

share|improve this answer
Yeah it's sweet looking, but is it really loaded and cached front-side? – BoBoz Dec 28 '12 at 23:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.