Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre_upload_error

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
5281            * Filter whether to preempt the XML-RPC media upload.
5282            *
5283            * Passing a truthy value will effectively short-circuit the media upload,
5284            * returning that value as a 500 error instead.
5285            *
5286            * @since 2.1.0
5287            *
5288            * @param bool $error Whether to pre-empt the media upload. Default false.
5289            */
5290           if ( $upload_err = apply_filters( 'pre_upload_error', false ) ) {
5291                return new IXR_Error( 500, $upload_err );
5292           }
5293
5294           if ( !empty($data['overwrite']) && ($data['overwrite'] == true) ) {
5295                // Get postmeta info on the object.
5296                $old_file = $wpdb->get_row("
5297                     SELECT ID
5298                     FROM {$wpdb->posts}
5299                     WHERE post_title = '{$name}'