Tagged Questions
2
votes
2answers
273 views
WYSIWYG editor in WP 3.2 plugin
I've created my own WP 3.2 plugin. Now I want to put the WYSIWYG editor in it. I've tried the following code:
<?php the_editor(null, 'body', null, false); ?>
Then it's displayed. I don't know ...
1
vote
2answers
190 views
How to integrate CLEditor to comment system?
I would like to improve the comment editing for user by adding a simple WYSIWYG editor, and I selected CLEditor as possible good candidate because it is light, customizable and jQuery based.
I ...
1
vote
1answer
135 views
Is Using WordPress Supplied WYSIWYG Advisable?
I have been considering using the the_editor function to create WYSIWYG editors in my own pages. Is using the WordPress's inbuilt WYSIWYG editor in a plugin meant for general distribution advisable? ...
1
vote
1answer
246 views
Inserting code to HTML view from a pop up initiated from visual view
I am trying to insert html into the HTML view.What i have done is to have tinymce advanced(a wordpress plugin) button that throws a popup and in it is all the necessary things to insert the html.The ...