将表单7与自定义帖子类型

时间:2017-02-06 20:36:44

标签: php forms custom-post-type contact-form-7

我想将联系表单7中的联系表单处理为自定义帖子类型。

目前,这就是我所拥有的:

<?php 

if ( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) &&        $_POST['action'] == "front_post") {

//store our post vars into variables for later use
//now would be a good time to run some basic error checking/validation
//to ensure that data for these values have been set
$title     = $_POST['title'];
$content   = $_POST['content'];
$Interest   = $_POST['Interest'];
$post_type = 'purchase';


//the array of arguements to be inserted with wp_insert_post
$new_post = array(
'post_title'    => $title,
'post_content'  => $content,
'tags_input'  => $tags,
'posted_data' => $Interest,
'post_status'   => 'publish',
'post_category' => array('0',$_POST['cat']),          
'post_type'     => $post_type 
);

//insert the the post into database by passing $new_post to wp_insert_post
//store our post ID in a variable $pid
//we now use $pid (post id) to help add out post meta data
$pid=wp_insert_post($new_post);

//we now use $pid (post id) to help add out post meta data
add_post_meta($pid, 'cust_key', $custom_field);


}
?>

以下是指向实际表单的链接:http://stage.icardpromotions.com/create-purchase-order/

我需要能够将此表单中的所有信息提取到自定义帖子类型“购买”

如您所见,我目前正在拉入post_content,post_title等。

我还试图通过输入名称“兴趣”从内容表单中提取内容,但它不起作用。

有没有人知道如何做到这一点?

5 个答案:

答案 0 :(得分:5)

 function save_posted_data( $posted_data ) {


       $args = array(
         'post_type' => 'post',
         'post_status'=>'draft',
         'post_title'=>$posted_data['your-name'],
          'post_content'=>$posted_data['your-message'],
       );
       $post_id = wp_insert_post($args);

       if(!is_wp_error($post_id)){
         if( isset($posted_data['your-name']) ){
           update_post_meta($post_id, 'your-name', $posted_data['your-name']);
         }
        // if( isset($posted_data['your-email']) ){
        //   update_post_meta($post_id, 'your-email', $posted_data['your-email']);
        // }
        // if( isset($posted_data['your-subject']) ){
        //   update_post_meta($post_id, 'your-subject', $posted_data['your-subject']);
        // }
         if( isset($posted_data['your-message']) ){
           update_post_meta($post_id, 'your-message', $posted_data['your-message']);
         }
      //and so on ...
      return $posted_data;
     }
 }

add_filter( 'wpcf7_posted_data', 'save_posted_data' );

--------------------解释它-------------------------

首先制作函数并向其添加钩子wpcf7_posted_data

---第一步---

function save_posted_data( $posted_data ) {

}
add_filter( 'wpcf7_posted_data', 'save_posted_data' );

---第二步---

现在你需要为需要使用wp_insert_post();填充的帖子添加一些参数

$args = array(
         'post_type' => 'post',
         'post_status'=>'draft',
         'post_title'=>$posted_data['your-name'],
          'post_content'=>$posted_data['your-message'],
       );
$post_id = wp_insert_post($args);

---第三步---

检查填充的项目是否有错误

if(!is_wp_error($post_id)){ //do ur stuffs }

---第四步---

现在检查是否设置了字段并更新了metas  例如发布

if( isset($posted_data['your-name']) ){
    update_post_meta($post_id, 'your-name', $posted_data['your-name']);
}

并最后返回值

return $posted_data;

完整代码在上面。

答案 1 :(得分:1)

这里有一个关于如何使用您自己的代码实现上述目标的快速提示,首先register your custom post

    add_action('init', 'my_custom_post');
    function (){
      $args = array(
       /*post type registration parameters*/
      );
      register_post_type( 'my_custom_post', $args );
    }

接下来,您要捕获已发布的数据和create a new post

    add_filter( 'wpcf7_posted_data', 'save_posted_data' );
    function save_posted_data( $posted_data ) {
      $args = array(
        'post_type' => 'my_custom_post',
       /*other default parameters you want to set*/
      );
      $post_id = wp_insert_post($args);
      if(!is_wp_error($post_id)){
        if( isset($posted_data['form-field-name']) ){
          update_post_meta($post_id, 'form-field-name', $posted_data['form-field-name']);
        }
      //and so on ...
      return $posted_data;
    }

答案 2 :(得分:1)

这是完全按照cf7-custompost开展工作的插件。

答案 3 :(得分:0)

有一个插件可以执行此操作,Post My CF7 Form

答案 4 :(得分:0)

Can u also use


    add_action('wpcf7_mail_sent','save_my_form_data_to_my_cpt');
    add_action('wpcf7_mail_failed','save_my_form_data_to_my_cpt');
    
    function save_my_form_data_to_my_cpt($contact_form){
        $submission = WPCF7_Submission::get_instance();
        if (!$submission){
            return;
        }
        $posted_data = $submission->get_posted_data();
        //The Sent Fields are now in an array
        //Let's say you got 4 Fields in your Contact Form
        //my-email, my-name, my-subject and my-message
        //you can now access them with $posted_data['my-email']
        //Do whatever you want like:
        $new_post = array();
        if(isset($posted_data['your-name']) && !empty($posted_data['your-name'])){
            $new_post['post_title'] = $posted_data['your-name'];
        } else {
            $new_post['post_title'] = 'Message';
        }
        $new_post['post_type'] = 'inquiry'; //insert here your CPT
        if(isset($posted_data['tel-901'])){
            $new_post['post_content'] = $posted_data['tel-901'];
        } else {
            $new_post['post_content'] = 'No Message was submitted';
        }
        $new_post['post_status'] = 'publish';
        //you can also build your post_content from all of the fields of the form, or you can save them into some meta fields
        if(isset($posted_data['your-email']) && !empty($posted_data['your-email'])){
            $new_post['meta_input']['sender_email_address'] = $posted_data['your-email'];
        }
        if(isset($posted_data['checkbox-674']) && !empty($posted_data['checkbox-674'])){
            //$new_post['meta_input']['sender_name'] = $posted_data['checkbox-674'];
            
            $ChildSeat=$posted_data['checkbox-674'];
            $Child_Seat='';
            for($a=0;$a<count($ChildSeat);$a++)
            {
                $data['checkbox-674']=$_POST['checkbox-674'][$a];
                $Child_Seat.=$data['checkbox-674'].'<br>';
                $new_post['post_content'] = $Child_Seat;
                
            }
      
      }
        //When everything is prepared, insert the post into your Wordpress Database
        if($post_id = wp_insert_post($new_post)){
           //Everything worked, you can stop here or do whatever
        } else {
           //The post was not inserted correctly, do something (or don't ;) )
        }
        return;
    }