Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_create_file_in_uploads

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
615           $ext = preg_replace( '|.*/([a-z0-9]+)|', '$1', $_SERVER['CONTENT_TYPE'] );
616           $slug = "$slug.$ext";
617           $file = wp_upload_bits( $slug, NULL, $bits);
618
619           log_app('wp_upload_bits returns:',print_r($file,true));
620
621           $url = $file['url'];
622           $file = $file['file'];
623
624           do_action('wp_create_file_in_uploads', $file); // replicate
625
626           // Construct the attachment array
627           $attachment = array(
628                'post_title' => $slug,
629                'post_content' => $slug,
630                'post_status' => 'attachment',
631                'post_parent' => 0,
632                'post_mime_type' => $type,
633                'guid' => $url