有没有办法让wordpress让我在主题选项面板中使用它的wp_editor。我正在制作我的第一个WP主题,我有点困惑。我需要在我的自定义主页上有一些字段是可编辑的而不是其他字段,而我想要编辑的字段需要通过html编辑器来控制以保留文本格式。
我目前正在使用像这样的textare字段......
//Paragraph1
$options[] = array( "name" => "paragraph1",
"desc" => "Enter text for paragraph1 on the homepage",
"id" => $shortname."_paragraph1",
"std" => "",
"type" => "textarea");
有人可以告诉我,我会做些什么来使html编辑器出现在主题选项下而不是textarea
由于
答案 0 :(得分:0)
只需在你的交换机案例中包含/输出wp_editor函数,用于特定的textarea类型/ id而不是通常的html代码。
有关wp_editor的使用,请参阅= http://codex.wordpress.org/Function_Reference/wp_editor