WP_REDIRECT 是您需要在wordpress中用于重定向的函数。它可以像这样使用:
wp_redirect( $location, $status );
exit;
//$location is required parameter. It is used to give the target url to which page will get redirected.
//$status is optional. It is used to set status code. Default is 302
您可以使用此功能将用户从一个页面重定向到另一个页面。应将其置于任一函数中。php或用于显示当前页面的模板文件。现在要在您的情况下使用它,只需将以下代码放在函数的底部。php文件
$redirectFromPageID = 2; //Redirect from Page having ID of 2
$redirectTo = home_url(); //Redirect to Home URL
if( is_page( $redirectFromPageID ) ){
wp_redirect( $redirectTo );
exit;
}