WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 1723 | $wp_filetype = wp_check_filetype( $name ); |
| 1724 | if ( ! $wp_filetype['ext'] && ! current_user_can( 'unfiltered_upload' ) ) |
| 1725 | return array( 'error' => __( 'Invalid file type' ) ); |
| 1726 | |
| 1727 | $upload = wp_upload_dir( $time ); |
| 1728 | |
| 1729 | if ( $upload['error'] !== false ) |
| 1730 | return $upload; |
| 1731 | |
| 1732 | $upload_bits_error = apply_filters( 'wp_upload_bits', array( 'name' => $name, 'bits' => $bits, 'time' => $time ) ); |
| 1733 | if ( !is_array( $upload_bits_error ) ) { |
| 1734 | $upload[ 'error' ] = $upload_bits_error; |
| 1735 | return $upload; |
| 1736 | } |
| 1737 | |
| 1738 | $filename = wp_unique_filename( $upload['path'], $name ); |
| 1739 | |
| 1740 | $new_file = $upload['path'] . "/$filename"; |
| 1741 | if ( ! wp_mkdir_p( dirname( $new_file ) ) ) { |