私のプラグインのオプションの1つに、これまでのところ運がなかったため、textareaではなくtinyMCEを追加しようとしています。私はこれを試しました:
http://www.dbuggr.com/smallwei/add-wysiwyg-editor-tinymce-wordpress-plugin/
この:
タブのスタイル(HTMLスタイル/ビジュアルスタイル)が機能しないため、スタイルに問題があるようです。誰もがWP 3.0以上で100%動作する実装について知っていますか?
私のプラグインのオプションの1つに、これまでのところ運がなかったため、textareaではなくtinyMCEを追加しようとしています。私はこれを試しました:
http://www.dbuggr.com/smallwei/add-wysiwyg-editor-tinymce-wordpress-plugin/
この:
タブのスタイル(HTMLスタイル/ビジュアルスタイル)が機能しないため、スタイルに問題があるようです。誰もがWP 3.0以上で100%動作する実装について知っていますか?
回答:
WP 3.3より前:http : //www.dev4press.com/2010/tutorials/wordpress/tips/add-rich-text-editor-to-your-plugin/
:あなたはWP 3.3以降を使用している場合は、wp_editorアップに見えるかもしれません http://codex.wordpress.org/Function_Reference/wp_editorを
$settings = array(
'teeny' => true,
'textarea_rows' => 15,
'tabindex' => 1
);
wp_editor(esc_html( __(get_option('whatever_you_need', 'whatever'))), 'terms_wp_content', $settings);
<?php
function my_address_function(){
if(isset($_POST['special_content'])){
update_option('special_content', $_POST['special_content']);
}
?>
<div class='wrap'>
<h2>My Super Admin Page</h2>
<form method='post'>
<?php
$content = get_option('special_content');
wp_editor( $content, 'special_content', $settings = array('textarea_rows'=> '10') );
submit_button('Save', 'primary');
?>
</form>
</div><!-- .wrap -->
<?php
}
?>
私があなたの質問を正しく読んでいる場合:
wordpress.org/extend/plugins/tinymce-advanced/
オプションには、テーマのカスタムスタイルを表示するためのチェックボックスがあります。