如何使用预览按钮创建和ACF表单?

时间:2018-10-28 14:16:20

标签: ajax wordpress forms advanced-custom-fields acfpro

我有一个前端表单,我想要一个表单的预览按钮。问题是acf表单在提交表单后会生成帖子ID。因此无法添加预览链接

get_preview_post_link可用于获取预览链接,但需要传递iD。

如何添加预览按钮?可能是ajax将帖子另存为草稿?并允许选项在新页面中发布?

  <?php

    acf_form(array(
        'post_id'         => 'new_post',
        'submit_value'    => __("Create", 'acf'),
        'return'          => '%post_url%',
        'updated_message' => __('added Successfully', 'acf'),
        'post_title'      => true,
        'post_content'    => false,
        'new_post'        => array(
            'post_type'   => 'l',
            'post_status' => 'publish',
        ),
    ));

    ?> 

请帮助谢谢

0 个答案:

没有答案