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
1291
1292      /**
1293       * Filters the redirect fallback URL for when the provided redirect is not safe (local).
1294       *
1295       * @since 4.3.0
1296       *
1297       * @param string $fallback_url The fallback URL to use by default.
1298       * @param int    $status       The redirect status.
1299       */
1300      $location = wp_validate_redirect( $location, apply_filters( 'wp_safe_redirect_fallback', admin_url(), $status ) );
1301
1302      wp_redirect($location, $status);
1303 }
1304 endif;
1305
1306 if ( !function_exists('wp_validate_redirect') ) :
1307 /**
1308  * Validates a URL for use in a redirect.
1309  *