Wordpress WYSIWYG image links broken Wordpress WYSIWYG image links broken wordpress wordpress

Wordpress WYSIWYG image links broken


That's because the data is sanitized when inserted in the database, you need to clean up the returning results of get_option.

Take a look at the documentation about Data Validation.

Use:

the_editor( esc_attr( get_option( "reminder_text" ) ), 'reminder_text' );

Related answer at WordPress StackExchange.