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 |
|---|---|
| 2125 | do_action('xmlrpc_call', 'metaWeblog.newMediaObject'); |
| 2126 | |
| 2127 | set_current_user(0, $user_login); |
| 2128 | if ( !current_user_can('upload_files') ) { |
| 2129 | logIO('O', '(MW) User does not have upload_files capability'); |
| 2130 | $this->error = new IXR_Error(401, __('You are not allowed to upload files to this site.')); |
| 2131 | return $this->error; |
| 2132 | } |
| 2133 | |
| 2134 | if ( $upload_err = apply_filters( "pre_upload_error", false ) ) |
| 2135 | return new IXR_Error(500, $upload_err); |
| 2136 | |
| 2137 | if(!empty($data["overwrite"]) && ($data["overwrite"] == true)) { |
| 2138 | // Get postmeta info on the object. |
| 2139 | $old_file = $wpdb->get_row(" |
| 2140 | SELECT ID |
| 2141 | FROM {$wpdb->posts} |
| 2142 | WHERE post_title = '{$name}' |
| 2143 | AND post_type = 'attachment' |