添加 MarkDown 编辑器

我找到了解决方案。请考虑以下提到的步骤。

安装 wp Markdown Editor 插件。

然后为转发器字段安装“ acf-wp-wysiwyg ”。现在你必须更新一些文件。打开此文件并转到行号 180 或转到“create_field”函数添加

echo '<script> var simplemde = new SimpleMDE({element: document.getElementById("'.$id.'")});jQuery(".quicktags-toolbar").css("display","none");</script>';

现在在“acf-repeater”插件下打开“input.js”文件,行号 142

更换

new_field_html = this.$el.find('> table > tbody > tr.row-clone').html().replace(/(=["]*[\w-\[\]]*?)(acfcloneindex)/g, '$1' + new_id),

new_field_html = this.$el.find('> table > tbody > tr.row-clone').html().replace(/(["]*[\w-\[\]]*?)(acfcloneindex)/g, '$1' + new_id),