以下代码应该可以工作。请将页面ID和重定向url替换为您自己的。
add_action( \'send_headers\', \'welcome_redirect\' );
function welcome_redirect() {
global $wp;
// check if it is a welcome page
if($wp->query_vars[\'p\'] == 1){
if(empty($_COOKIE[\'welcome_visited\']))
setcookie("welcome_visited", 1, time()+3600000, "/"); // set cookie
else {
header(\'Location: \'.get_site_url()); // redirect to homepage
exit;
}
}
}