我有一个前端表单,我想要一个表单的预览按钮。问题是 acf 表单在提交表单后生成 post 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',
),
));
?>
请帮忙谢谢