Skip to content

Instantly share code, notes, and snippets.

@santi020k
Last active November 4, 2017 20:14
Show Gist options
  • Save santi020k/b8c32fe734c5bd81204327fa25ad09be to your computer and use it in GitHub Desktop.
Save santi020k/b8c32fe734c5bd81204327fa25ad09be to your computer and use it in GitHub Desktop.
Save files in Wordpress and return id
<?php
function upload_user_file( $file = array() ) {
require_once( ABSPATH . 'wp-admin/includes/admin.php' );
$file_return = wp_handle_upload( $file, array('test_form' => false ) );
if( isset( $file_return['error'] ) || isset( $file_return['upload_error_handler'] ) ) {
return false;
} else {
$filename = $file_return['file'];
$attachment = array(
'post_mime_type' => $file_return['type'],
'post_title' => preg_replace( '/\.[^.]+$/', '', basename( $filename ) ),
'post_content' => '',
'post_status' => 'inherit',
'guid' => $file_return['url']
);
$attachment_id = wp_insert_attachment( $attachment, $file_return['url'] );
require_once(ABSPATH . 'wp-admin/includes/image.php');
$attachment_data = wp_generate_attachment_metadata( $attachment_id, $filename );
wp_update_attachment_metadata( $attachment_id, $attachment_data );
if( 0 < intval( $attachment_id ) ) {
return $attachment_id;
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment