使用acf_form在现有表单中插入新帖子

时间:2018-10-19 19:13:34

标签: wordpress advanced-custom-fields

首先,对任何英语错误感到抱歉。

我正在使用带有附加社区事件的Events Calendar PRO来提交新事件。我需要将此插件与高级自定义字段(ACF)插件配合使用,以处理项目的某些要求(例如使用多个活动场地)。

ACF具有<div *ngIf="this.sites.length"> <app-componentA></app-componentA> <app-componentB></app-componentB> </div> 功能,可在页面中显示输入(或表单)。我正确配置了页面,并显示了自定义字段,但是在提交表单时,事件被保存而没有自定义字段。

我的代码是:

acf_form()

functions.php

在页面模板中:

acf_register_form(array(
    'id' => 'tribe-venue-2',
    'fields' => array('locais_secundarios'),
    'form' => false // display just an input, not the whole form
));

我知道社区事件插件使用acf_form_head(); // Before get_header() function ... <form method="post" ...> acf_form('tribe-venue-2'); ... </form> 函数创建一个新事件。如何添加自定义字段值(后置元数据)以与其他字段一起插入?

0 个答案:

没有答案