我只知道一点Javascript,我还不是程序员。我创建了一个Ninja Forms
在我的 Wordpress 网站中使用。当用户填写表单的 4 个字段并按Submit时,我需要这些数据始终出现在前端(在我在 html 中创建的 4 个特定位置),并且最后一个提交覆盖前一个。
Ninja 将数据保存在 wp_postmeta 中,如下所示:
**meta_key** **meta_value**
_field_12 (the first of the values I want appear in frontend)
_field_13 (the second one)
_field_14 (the third one)
_field_15 (the fourth one)
_form_id 1 (always the same value)
_seq_num 3 (increase 1 every time Submit is pressed)
我该怎么做?我知道在没有 PHP 知识的情况下超出了我的范围,但是,有人可以给我一些技巧吗?有插件可以获取吗?
请帮忙