wp_redirect


wp_redirect ( $location, $status = 302, $x_redirect_by = 'WordPress' )

Parameters:
  • (string) location The path or URL to redirect to.
  • (int) status Optional. HTTP response status code to use. Default '302' (Moved Temporarily).
  • (string|false) x_redirect_by Optional. The application doing the redirect or false to omit. Default 'WordPress'.
Returns:
  • (bool) False if the redirect was canceled, true otherwise.
Defined at:
Change Log:
  • 5: .
  • 5: .

Description

Redirects to another page.Note: wp_redirect() does not exit automatically, and should almost always be followed by a call to `exit;`: wp_redirect( $url ); exit; Exiting can also be selectively manipulated by using wp_redirect() as a conditional in conjunction with the {@see 'wp_redirect'} and {@see 'wp_redirect_status'} filters: if ( wp_redirect( $url ) ) { exit; }

Related Functions

is_redirect, wp_safe_redirect, wp_credits, auth_redirect, wp_old_slug_redirect

Top Google Results

User discussions

wpseek mobile