wp_redirect( $location, $status );
exit;
?>
参数
$location(string) (必要) The absolute URI which the user will be redirected to.默认:none$status(integer) (可选) 跳转时的http状态码默认: 302
返回值(bool|void)如果 $location 没有设置,返回false,其他情形下不返回任何值
利用例子<?php wp_redirect( home_url() ); exit; ?>
也可以跳转到外部链接,或利用301永久永久重定向状态码 :
<?php wp_redirect( 'https://www.viphper.com', 301 ); exit; ?>