1

テキストエリアのTinyMCEをアクティブにしようとしています。私のコードは以下の通りです

<?php
wp_editor( '', 'content-id', array( 'textarea_name' => 'txtmessage', 'media_buttons' => false, 'tinymce_adv' => array( 'width' => '300', 'theme_advanced_buttons1' => 'formatselect,forecolor,|,bold,italic,underline,|,bullist,numlist,blockquote,|,justifyleft,justifycenter,justifyright,justifyfull,|,link,unlink,|,spellchecker,wp_fullscreen,wp_adv' ) ) ); 
echo "\r\n";
echo "\r\n";
echo "\r\n --------Original Message-------- \r\n \r\n";
echo "\r\n\r\n".$reply_message_contentmain;

コードは機能します。ただし、私の問題は、エコーメッセージがTinyMCE領域の下部と外側に表示されることです。何か提案、それを修正する方法は?私はphpの専門家ではありません。ありがとう、

4

1 に答える 1

3

wp_editor()の構文は次のとおりです。

<?php wp_editor( $content, $editor_id, $settings = array() ); ?> 

$ contentを空白のままにし、エディターの呼び出し後にエコーします。次のようにします。

$content = '\r\n\r\n\r\n--------Original Message-------- \r\n\r\n\r\n' .$reply_message_contentmain
wp_editor( $content, 'content-id', array( 'textarea_name' => 'txtmessage', 'media_buttons' => false, 'tinymce_adv' => array( 'width' => '300', 'theme_advanced_buttons1' => 'formatselect,forecolor,|,bold,italic,underline,|,bullist,numlist,blockquote,|,justifyleft,justifycenter,justifyright,justifyfull,|,link,unlink,|,spellchecker,wp_fullscreen,wp_adv' ) ) );

これは機能するはずですが、現在のところからテストすることはできません。どのように進むかを教えてください(ただし、これで正しい方向に進むはずです)

于 2012-09-10T04:10:02.570 に答える