Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: download_url_error_max_body_size

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
1013                /**
1014                 * Filters the maximum error response body size in `download_url()`.
1015                 *
1016                 * @since 5.1.0
1017                 *
1018                 * @see download_url()
1019                 *
1020                 * @param int $size The maximum error response body size. Default 1 KB.
1021                 */
1022                $response_size = apply_filters( 'download_url_error_max_body_size', KB_IN_BYTES );
1023                $data['body']  = fread( $tmpf, $response_size );
1024                fclose( $tmpf );
1025           }
1026
1027           unlink( $tmpfname );
1028           return new WP_Error( 'http_404', trim( wp_remote_retrieve_response_message( $response ) ), $data );
1029      }
1030
1031      $content_md5 = wp_remote_retrieve_header( $response, 'content-md5' );