When we use custom form with file upload and we want to upload Video or Image in wordpress media library use following code.
$array) {
if ($_FILES[$file][‘error’] !== UPLOAD_ERR_OK) {
return “upload error : ” . $_FILES[$file][‘error’];
}
$attach_id = media_handle_upload( $file, 0 );
}
}
}
?>
Was this article helpful?
YesNo