来到Wordpress索引页面的访问者应该只在第一次被重定向到其他页面。
使用Cookie实现此目的的最简单方法是什么?
答案 0 :(得分:1)
尝试将以下内容添加到主题的functions.php文件中:
function check_for_redirect() {
$days_to_expire = 30;
if (!is_admin() && !isset($_COOKIE['already_visited'])) {
setcookie('already_visited', true, time() + 86400 * $days_to_expire);
wp_redirect('http://www.example.com', 302); //change the URL and status to whatever you want
exit;
}
}
add_action('init', 'check_for_redirect');