0

有没有办法让wordpress让我在主题选项面板中使用它的wp_editor。我正在制作我的第一个 WP 主题,我有点困惑。我需要让我的自定义主页上的某些字段可编辑,但其他字段不可编辑,而我确实希望可编辑的字段需要通过 html 编辑器进行控制以保留文本格式。

我目前正在使用这样的文本字段...

//Paragraph1
$options[] = array( "name" => "paragraph1",
                "desc" => "Enter text for paragraph1 on the homepage",
                "id" => $shortname."_paragraph1",
                "std" => "",
                "type" => "textarea");    

有人可以告诉我如何使 html 编辑器出现在主题选项而不是 textarea 下

谢谢

4

1 回答 1

0

只需在您的 switch case 中包含/输出该特定 textarea 类型/id 的 wp_editor 函数,而不是通常的 html 代码。

有关 wp_editor 的用法,请参阅 = http://codex.wordpress.org/Function_Reference/wp_editor

于 2013-06-27T13:11:30.103 回答