我无法返回在front end form上输入的值,无法使用高级自定义字段插件在Wordpress中创建新帖子。我创建了一个新的字段组,并且表单在前端显示正常,当我提交它提交的表单时没有标题,即使我在标题框中有标题。这是我在我的字段组中的文本框,其名称为' title'。
根据文档,我应该能够传递$ _POST变量,但是很难让它工作或找到$ _POST变量。
这是我的页面模板,它显示了表单,创建了一个帖子,但帖子没有标题。所以简而言之我不知道如何检索要在wp_insert_post中使用的值:
<?php acf_form_head(); ?>
<?php get_header(); ?>
<?php
function my_pre_save_post( $post_id )
{
// check if this is to be a new post
if( $post_id != 'new' )
{
return $post_id;
}
// Create a new post
$post = array(
'post_status' => 'publish' ,
'post_title' => $_POST['fields']['title'] ,
'post_type' => 'custom_gallery' ,
);
// insert the post
$post_id = wp_insert_post( $post );
// update $_POST['return']
$_POST['return'] = add_query_arg( array('post_id' => $post_id), $_POST['return'] );
// return the new ID
return $post_id;
}
add_filter('acf/pre_save_post' , 'my_pre_save_post' );
?>
<div id="content" class="clearfix row">
<div id="main" class="col-sm-12 clearfix" role="main">
<?php
acf_form(array(
'field_groups' => array('31056'),
'post_id' => 'new',
'submit_value' => 'Submit Project'
)); ?>
</div> <!-- end #main -->
<?php //get_sidebar(); // sidebar 1 ?>
</div> <!-- end #content -->
<?php get_footer(); ?>
答案 0 :(得分:0)
试试这个: https://wordpress.org/plugins/forms-actions https://wordpress.org/plugins/acf-frontend-display
表单您发送并执行操作的操作流程。