这里有一个pastebin 包括您的代码。
获取tinyMCE的旧值
$meta_biography = get_post_meta( $post->ID, \'meta_biography\', true );
调用TinyMCE编辑器
wp_editor( $meta_biography, \'biography\', array(
\'wpautop\' => true,
\'media_buttons\' => false,
\'textarea_name\' => \'meta_biography\',
\'textarea_rows\' => 10,
\'teeny\' => true
) );
保存编辑器值,如果没有,则删除旧值。
if( isset( $_POST[\'meta_biography\'] ) && $_POST[\'meta_biography\'] != \'\' ) {
update_post_meta( $post_id, \'meta_biography\', $_POST[\'meta_biography\'] );
} else {
delete_post_meta( $post_id, \'meta_biography\' );
}
如果要向编辑器添加更多选项,可以查看
Codex 或者看看这个很好
WPTuts Article. 您想使用
tinymce
并向其传递一组设置。您可能必须删除
teeny => true
在
wp_editor()
因为Codex说它将只使用最小的编辑器配置。