Changeset 57693 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 02/22/2024 10:56:26 AM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r57226 r57693 1378 1378 * @global bool $is_IIS 1379 1379 * 1380 * @param string $location The path or URL to redirect to.1381 * @param int $status Optional. HTTP response status code to use. Default '302' (Moved Temporarily).1382 * @param string $x_redirect_by Optional. The application doing the redirect. Default 'WordPress'.1380 * @param string $location The path or URL to redirect to. 1381 * @param int $status Optional. HTTP response status code to use. Default '302' (Moved Temporarily). 1382 * @param string|false $x_redirect_by Optional. The application doing the redirect or false to omit. Default 'WordPress'. 1383 1383 * @return bool False if the redirect was canceled, true otherwise. 1384 1384 */ … … 1427 1427 * @since 5.1.0 1428 1428 * 1429 * @param string $x_redirect_by The application doing the redirect.1430 * @param int $status Status code to use.1431 * @param string $location The path to redirect to.1429 * @param string|false $x_redirect_by The application doing the redirect or false to omit the header. 1430 * @param int $status Status code to use. 1431 * @param string $location The path to redirect to. 1432 1432 */ 1433 1433 $x_redirect_by = apply_filters( 'x_redirect_by', $x_redirect_by, $status, $location ); … … 1521 1521 * @since 5.1.0 The return value from wp_redirect() is now passed on, and the `$x_redirect_by` parameter was added. 1522 1522 * 1523 * @param string $location The path or URL to redirect to.1524 * @param int $status Optional. HTTP response status code to use. Default '302' (Moved Temporarily).1525 * @param string $x_redirect_by Optional. The application doing the redirect. Default 'WordPress'.1523 * @param string $location The path or URL to redirect to. 1524 * @param int $status Optional. HTTP response status code to use. Default '302' (Moved Temporarily). 1525 * @param string|false $x_redirect_by Optional. The application doing the redirect or false to omit. Default 'WordPress'. 1526 1526 * @return bool False if the redirect was canceled, true otherwise. 1527 1527 */
Note: See TracChangeset
for help on using the changeset viewer.