我有一个自定义的选项卡式菜单,其中有一些正常工作的输入字段。我遵循了本教程:http://wp.tutsplus.com/tutorials/the-complete-guide-to-the-wordpress-settings-api-part-8-validation-sanitisation-and-input-ii/
但是,我需要替换富文本元素的textarea输入。我尝试使用函数wp\\u editor(),但我不知道如何从textarea传递id。
如何在内部添加或管理de编辑器?我看了一些教程,但仍然有问题。
提前感谢
这是de代码:
这是代码。
在这里我创建de字段:
add_settings_field(
\'Textarea Element\',
__( \'Textarea a TinyMCE\', \'mymenu\' ),
\'textarea_element_callback\',
\'theme_input_examples\',
\'input _section\'
);
在这里,我制作并echo将其显示在我的管理页面上:
function textarea_element_callback() {
$options = get_option( \'theme_input_examples\' );
echo \'<textarea id="textarea_example" name=" theme_input_examples[textarea_example]" rows="5" cols="40">\' . $options[\'textarea_example\'] . \'</textarea>\';
}
这是我显示文本区域的菜单:
add_submenu_page(
\'theme_menu\',
__( \'Opfolgning pa kontrakt\', \'mymenu\' ),
__( \'Opfolgning pa kontrakt\', \' mymenu \' ),
\'administrator\',
\'theme_input_examples\',
create_function( null, \'theme_display( "input_examples_4" );\' )
);