我可以将WordPress编辑器添加到我的自定义主题选项中吗?

时间:2015-10-02 作者:bishal neupane

我想将wordpress默认编辑器添加到我的自定义主题选项编辑器中,最近我使用了textarea,但它不支持html格式!

// Start Booking Section 
            array(
                \'type\' => \'textarea\',
                \'name\' => \'booking\',
                \'label\' => __(\'Booking Code !\', \'machan\'),
                \'description\' => __(\'Add Booking Code for front-end display !\', \'machan\'),
                \'default\' => \'\',
            ),
            // End Booking Section
我正在为wordpress后端主题选项和元框使用vafpress framework 2.0。

1 个回复
最合适的回答,由SO网友:Khaled Sadek 整理而成

好的,如果您像您所说的那样使用vafpress框架,那么您只有很小的更改:)只需使用文本区域的wpeditor instate:)

    array(
        \'type\' => \'codeeditor\',
        \'name\' => \'booking\',
        \'label\' => __(\'Booking Code !\', \'machan\'),
        \'description\' => __(\'Add Booking Code for front-end display !\', \'machan\'),
        \'mode\' => \'html\',
    ),

相关推荐

在子主题中包含admin-options.php文件

我的主题在函数中使用以下内容。phprequire\\u once get\\u template\\u directory()。\'/包括/管理选项。php’;我想用我自己版本的管理选项覆盖它。php文件,我已将其存储在我的子主题目录中。根据Codex指令Referencing / Including Files in Your Child Theme 我尝试在我的子主题函数中添加以下行。php文件require\\u once(get\\u stylesheet\\u directory()。\'/管