但这会以 html 方式加载 w-6ren">
gpt4 book ai didi

php - 如何使wp_editor以可视模式启动

转载 作者:搜寻专家 更新时间:2023-10-31 21:14:43 24 4
gpt4 key购买 nike

我尝试用标记制作一个漂亮的文本区域。我的用户超过 40 岁,所以他们需要一个所见即所得的编辑器来立即加载。

我使用 wordpres 并像这样加载字段:

<form style="clear:both" method='post' action="./?id=<?= $_GET['id'] ?>">
<?php wp_editor(getUserData('message'), 'message'); ?>
<div id="message" ></div >
<input type="submit" name='action' value="opslaan">
</form>

但这会以 html 方式加载 wordpres 的编辑器。他们绝对不会明白他们需要插入视觉来获得漂亮的编辑器。那么有没有人知道如何让它默认以可视模式加载?

谢谢

最佳答案

This为我工作(Wordpress 3.5.2):

add_filter( 'wp_default_editor', 'force_default_editor' );
function force_default_editor() {
//allowed: tinymce, html, test
return 'tinymce';
}

关于php - 如何使wp_editor以可视模式启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11620881/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com