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