how to set category name for post: this is my code ,this is not working ,why?
$post_title = $vname;
$categ='category name';
$post_content = '[newpage link="'.$videos.'"]';
$new_post = array(
'ID' => '',
'post_author' => $user->ID,
'post_category' => $categ,
'post_content' => $post_content,
'post_title' => $post_title,
'post_status' => 'publish',
);
$post_id = wp_insert_post($new_post);