http_request_redirection_count
Filters the number of redirects allowed during an HTTP request.
Description
Parameters (1)
- 0. $int (int) =>
5
- Number of redirects allowed. Default 5.
Usage
- To run the hook, copy the example below.
- $int = apply_filters( 'http_request_redirection_count', $int );
- if ( !empty( $int ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the http_request_redirection_count callback
- function filter_http_request_redirection_count( $int ) {
- // make filter magic happen here...
- return $int;
- };
- // add the filter
- add_filter( 'http_request_redirection_count', 'filter_http_request_redirection_count', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'http_request_redirection_count', 'filter_http_request_redirection_count', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /wp-includes/class-http.php
- 'redirection' => apply_filters( 'http_request_redirection_count', 5 ),