wordpress redirect page code example
Example 1: wp_redirect to home page
function redirect_to_home() {
if(!is_admin() && is_page('2')) {
wp_redirect(home_url());
exit();
}
}
add_action('template_redirect', 'redirect_to_home');
Example 2: redirect wordpress
add_action( 'template_redirect', 'redirect_to_other_page' );
function redirect_to_other_page() {
if ( is_page( 143 ) ) {
wp_redirect( '"'.home_url().'/services/messenger/"', 301 );
exit;
}
}
Example 3: wp redirect
wp_redirect( $url );
Example 4: In wordpress, how to redirect after a comment back to the referring page?
add_filter('comment_post_redirect', 'redirect_after_comment');
function redirect_after_comment($location)
{
return $_SERVER["HTTP_REFERER"];
}