As i tried with this code , this seems fine but only few subcategory are created and few not. I am not getting the problem.Please tell me if there’s something missing.
$catIdOfTransport='112';
wp_create_category('car',$catIdOfTransport) ;
$arr=array('maruti','nano','bmw');
$val=count($arr);
for($j=0;$j<$val;$j++){ wp_create_category( $arr[$j], 'car'); }
wp_create_category($values, $parent);
i think this code can help you .
Thanks