Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_safe_redirect_fallback

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
1452
1453           /**
1454            * Filters the redirect fallback URL for when the provided redirect is not safe (local).
1455            *
1456            * @since 4.3.0
1457            *
1458            * @param string $fallback_url The fallback URL to use by default.
1459            * @param int    $status       The HTTP response status code to use.
1460            */
1461           $location = wp_validate_redirect( $location, apply_filters( 'wp_safe_redirect_fallback', admin_url(), $status ) );
1462
1463           return wp_redirect( $location, $status, $x_redirect_by );
1464      }
1465 endif;
1466
1467 if ( ! function_exists( 'wp_validate_redirect' ) ) :
1468      /**
1469       * Validates a URL for use in a redirect.
1470       *