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 |
---|---|
794 | * Reference to a single element from `$_FILES`. |
795 | * |
796 | * @type string $name The original name of the file on the client machine. |
797 | * @type string $type The mime type of the file, if the browser provided this information. |
798 | * @type string $tmp_name The temporary filename of the file in which the uploaded file was stored on the server. |
799 | * @type int $size The size, in bytes, of the uploaded file. |
800 | * @type int $error The error code associated with this file upload. |
801 | * } |
802 | */ |
803 | $file = apply_filters( "{$action}_prefilter", $file ); |
804 |
|
805 | /** |
806 | * Filters the override parameters for a file before it is uploaded to WordPress. |
807 | * |
808 | * The dynamic portion of the hook name, `$action`, refers to the post action. |
809 | * |
810 | * Possible hook names include: |
811 | * |
812 | * - `wp_handle_sideload_overrides` |