Well.. U got me there now.. I really don’t know.. I haven’t installed tinyMCE by my own. I have WP 4.0 so I’m guessing I’m using native WP_editor.
This is how it looks on my submit page:
<?php
$settings = array(
'wpautop' => true,
'postContent' => 'content',
'media_buttons' => false,
'editor_css' => '<style>.mceToolba { background-color: #faf9f4; padding: 5px; }</style>',
'tinymce' => array(
'toolbar1' => 'bold,italic,underline,blockquote,separator,strikethrough,bullist,numlist,justifyleft,justifycenter,justifyright,undo,redo,link,unlink,fullscreen',
'toolbar2' => 'pastetext,pasteword,removeformat,|,charmap,|,outdent,indent,|,undo,redo',
'toolbar3' => '',
'toolbar4' => ''
),
'quicktags' => false
);
wp_editor( $postContent, 'postContent', $settings );
?>
And on the other page I’m calling it with
<?php echo the_content(); ?>
As I have tinyMCE set to true, I figured that I’m using tinyMCE. But it looks like it is native WP text editor..