Stop Options Page stripping tags
-
Hi there, I have created a custom options page, however it is stripping all html tags from a wysiwyg editor field:
require_once('RationalOptionPages.php'); $pages = array( 'example' => array( 'page_title' => __( 'Example1', 'example' ), 'sections' => array( 'optionshome' => array( 'title' => __( 'HomePageOptions', 'example' ), 'fields' => array( ), 'examplefieldone' => array( 'title' => __( 'examplefieldone', 'example' ), 'type' => 'wp_editor', ), ), ), ), ), ); $option_page = new RationalOptionPages( $pages );
Any ideas how to prevent this wysiwyg editor from stripping tags here?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Stop Options Page stripping tags’ is closed to new replies.