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 |
|---|---|
| 2148 | * Filters whether to treat the upload bits as an error. |
| 2149 | * |
| 2150 | * Passing a non-array to the filter will effectively short-circuit preparing |
| 2151 | * the upload bits, returning that value instead. |
| 2152 | * |
| 2153 | * @since 3.0.0 |
| 2154 | * |
| 2155 | * @param mixed $upload_bits_error An array of upload bits data, or a non-array error to return. |
| 2156 | */ |
| 2157 | $upload_bits_error = apply_filters( 'wp_upload_bits', array( 'name' => $name, 'bits' => $bits, 'time' => $time ) ); |
| 2158 | if ( !is_array( $upload_bits_error ) ) { |
| 2159 | $upload[ 'error' ] = $upload_bits_error; |
| 2160 | return $upload; |
| 2161 | } |
| 2162 | |
| 2163 | $filename = wp_unique_filename( $upload['path'], $name ); |
| 2164 | |
| 2165 | $new_file = $upload['path'] . "/$filename"; |
| 2166 | if ( ! wp_mkdir_p( dirname( $new_file ) ) ) { |