我正在尝试为我的插件中的选项之一添加tinyMCE而不是textarea,到目前为止还没有运气。我尝试了这个:
http://www.dbuggr.com/smallwei/add-wysiwyg-editor-tinymce-wordpress-plugin/
和这个:
选项卡的样式(HTML样式/视觉样式)不起作用,样式似乎存在一些问题。有人知道实现与WP 3.0及更高版本100%兼容的实现吗?
我正在尝试为我的插件中的选项之一添加tinyMCE而不是textarea,到目前为止还没有运气。我尝试了这个:
http://www.dbuggr.com/smallwei/add-wysiwyg-editor-tinymce-wordpress-plugin/
和这个:
选项卡的样式(HTML样式/视觉样式)不起作用,样式似乎存在一些问题。有人知道实现与WP 3.0及更高版本100%兼容的实现吗?
Answers:
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/
选项中有一个复选框,用于显示主题的自定义样式。