wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_handle_upload › WordPress Function
Since2.0.0
Deprecatedn/a
› wp_handle_upload ( $file, $overrides = false, $time = null )
Parameters: (3) |
|
See: | |
Returns: |
|
Defined at: |
|
Codex: |
Wrapper for _wp_handle_upload().
Passes the {@see 'wp_handle_upload'} action.Related Functions: _wp_handle_upload, wp_handle_sideload, wp_import_handle_upload, media_handle_upload, wp_get_upload_dir
Source
function wp_handle_upload( &$file, $overrides = false, $time = null ) { /* * $_POST['action'] must be set and its value must equal $overrides['action'] * or this: */ $action = 'wp_handle_upload'; if ( isset( $overrides['action'] ) ) { $action = $overrides['action']; } return _wp_handle_upload( $file, $overrides, $time, $action ); }