Hi. Like the title says csv importer does not post the video i think i found the error on the csvimporter.php but whwn i modify does not work this is the code from the plugin
$new_post = array(
'ID' => '',
'post_title' => $title,
'post_content' => $description,
'post_status' => $post_status,
'tags_input' => $tags ,
'post_date' => date('Y-m-d H:i:s',$post_time)
);
$post_id = wp_insert_post($new_post);
This is how i think it should be
$new_post = array(
'ID' => '',
'post_title' => $title,
'post_content' => $post_content,
'post_status' => $post_status,
'tags_input' => $tags ,
'post_date' => date('Y-m-d H:i:s',$post_time)
);
$post_id = wp_insert_post($new_post);
Please help me i need the csv importer.