wp_editor problems with linkks
-
Hi,
I’m developing a plugin and I’m using wp_editor.
It works fine, except for the links. When a link is created, the text is saved into the database with a backslash after the =. This is an example:<p><a href="https://www.www.ads-software.com">www.www.ads-software.com</a></p>
This is the code:
<?php $args = array( 'editor_height' => 200, 'media_buttons' => false, 'teeny' => true, 'dfw' => false, 'tinymce' => true, 'wpautop' => false, 'quicktags' => true ); $str = stripslashes($item['description']); wp_editor($str, 'description', $args ); ?>
Do you konow what the problem may be?
Thanks in advance!
Josep
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘wp_editor problems with linkks’ is closed to new replies.