動作させるにはさらに多くのコードが必要であり、JavaScriptエラーも発生していました。Deprecated TinyMCE API call: <target>.onKeyUp.add(..)
これは、WordPressが3.xから4にアップグレードされたために発生しましたclear my browser cache
。
まずtiny_mce_before_init
、functions.phpファイルのwpフィルターにコールバックを追加しました。これにより、エディターが初期化されたときに呼び出されるjsコールバック関数を追加できます。
add_filter( 'tiny_mce_before_init', array( $obj, 'filter_cb_mce_before_init' ) );
/**
* Filter cb to add event listeners to tinymce editor.
* @param array $init An array of setup js functions as strings.
* @return array Returns new array of js function strings.
*/
function filter_cb_mce_before_init( array $init ) {
$init['setup'] = "function(ed){
if(get_tinymce_content) //not required, I use it as flag to check if on correct page
ed.on('change', function(){ get_tinymce_content() });
}";
return $init;
}
次に、JavaScript関数は、コンテンツが変更されたときに、コンテンツで必要なことを実行します。wp_enqueue_scriptsを使用して、このJavaScriptを必要なページに追加します。
/**
* Get the content of the tinyMCE editor.
* @link http://wordpress.stackexchange.com/questions/42652/how-to-get-the-input-of-a-tinymce-editor-when-using-on-the-front-end
* @return {string} Returns the content
*/
function get_tinymce_content(){
//change to name of editor set in wp_editor()
var editorID = 'my_editor_id';
if (jQuery('#wp-'+editorID+'-wrap').hasClass("tmce-active"))
var content = tinyMCE.get(editorID).getContent({format : 'raw'});
else
var content = jQuery('#'+editorID).val();
console.log(content);
}
次のコードを使用してエディターを任意のページに印刷すると、コードが機能しました。
<?php wp_editor( @$event->description, 'my_editor_id', array(
'media_buttons' => false,
'textarea_name' => 'data[description]',
'quicktags' => array("buttons"=>"link,img,close"),
) ); ?>
val()